1 /* utf8.h
2  *
3  * $Id$
4  *
5  * Notice: This header file contains declarations of functions and types that
6  * are just used internally. All library functions and types that are supposed
7  * to be publicly accessable are defined in ./src/ming.h.
8  */
9 
10 #ifndef SWF_UTF8_H_INCLUDED
11 #define SWF_UTF8_H_INCLUDED
12 
13 #include "ming.h"
14 
15 int UTF8Length(const char *string);
16 unsigned short UTF8GetChar(const char** strptr);
17 int UTF8ExpandString(const char* string, unsigned short** outstr);
18 
19 #endif /* SWF_UTF8_H_INCLUDED */
20