Add functions to check diacr/func existance
[platform/upstream/kbd.git] / src / utf8.h
1 #ifndef _UTF8_H
2 #define _UTF8_H
3
4 extern unsigned long from_utf8(char **inptr, int cnt, int *err);
5
6 #define UTF8_BAD        (-1)
7 #define UTF8_SHORT      (-2)
8
9 #endif /* _UTF8_H */