123456789101112131415161718192021222324252627 |
- #ifndef BDE_UTF8_H
- #define BDE_UTF8_H
- #include "types.h"
- int utf8_to_unicode(unichar *dest, const char *s, int len, const char **problem = NULL);
- int unicode_to_utf8(char *dest, const unichar *us, int len);
- #endif
|