* TextBoxTest: More of these tests work now.
[mono-project.git] / mono / utils / strenc.h
blob996674e0bffe769267fb7208d7165441fafafd84
1 /*
2 * strenc.h: string encoding conversions
4 * Author:
5 * Dick Porter (dick@ximian.com)
7 * (C) 2003 Ximian, Inc.
8 */
10 #ifndef _MONO_STRENC_H_
11 #define _MONO_STRENC_H_ 1
13 #include <glib.h>
15 extern gunichar2 *mono_unicode_from_external (const gchar *in, gsize *bytes);
16 extern gchar *mono_utf8_from_external (const gchar *in);
17 extern gchar *mono_unicode_to_external (const gunichar2 *uni);
19 #endif /* _MONO_STRENC_H_ */