Character encoding (UTF-8 to locale) example and use in standalone.c.
[gedcom-parse.git] / utf8-locale.h
1 /* Encoding utility from UTF-8 to locale and vice versa
2    Copyright (C) 2001, 2002 Peter Verthez
3
4    Permission granted to do anything with this file that you want, as long
5    as the above copyright is retained in all copies.
6    THERE IS NO WARRANTY - USE AT YOUR OWN RISK
7 */
8
9 /* $Id$ */
10 /* $Name$ */
11
12 #ifndef __UTF8_LOCALE_H
13 #define __UTF8_LOCALE_H
14
15 void  convert_set_unknown(const char* unknown);
16 char* convert_utf8_to_locale(char* input);
17 char* convert_locale_to_utf8(char* input);
18
19 #endif /* __UTF8_LOCALE_H */