Blame src/local.h

Packit c32a2d
#ifndef H_LOCAL
Packit c32a2d
#define H_LOCAL
Packit c32a2d
/*
Packit c32a2d
	local: some stuff for localisation
Packit c32a2d
Packit c32a2d
	Currently, this is just about determining if we got UTF-8 locale.
Packit c32a2d
Packit c32a2d
	copyright 2008 by the mpg123 project - free software under the terms of the LGPL 2.1
Packit c32a2d
	see COPYING and AUTHORS files in distribution or http://mpg123.org
Packit c32a2d
	initially written by Thomas Orgis, based on a patch by Thorsten Glaser.
Packit c32a2d
*/
Packit c32a2d
Packit c32a2d
/* Pulled in by mpg123app.h! */
Packit c32a2d
Packit c32a2d
/* This is 1 if check_locale found UTF-8, 0 if not. */
Packit c32a2d
extern int utf8env;
Packit c32a2d
Packit c32a2d
/* Check/set locale, set the utf8env variable. */
Packit c32a2d
void check_locale(void);
Packit c32a2d
Packit c32a2d
#endif