1
0
mirror of https://github.com/rfivet/uemacs.git synced 2024-06-04 03:20:42 +00:00
uemacs/utf8.h

11 lines
229 B
C
Raw Normal View History

#ifndef UTF8_H
#define UTF8_H
typedef unsigned int unicode_t;
2013-05-19 00:43:30 +00:00
unsigned utf8_to_unicode( char *line, unsigned index, unsigned len,
unicode_t *res) ;
unsigned unicode_to_utf8( unsigned int c, char *utf8) ;
#endif