Blob Blame History Raw
#ifndef _UTF8_H
#define _UTF8_H

extern unsigned long from_utf8(char **inptr, int cnt, int *err);

#define UTF8_BAD (-1)
#define UTF8_SHORT (-2)

#endif /* _UTF8_H */