mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-10 14:36:13 -05:00
13 lines
369 B
C
13 lines
369 B
C
#ifndef UTF8_H
|
|
#define UTF8_H
|
|
|
|
typedef unsigned int unicode_t ;
|
|
|
|
int utf8_width( unicode_t c) ;
|
|
unsigned utf8_to_unicode( const char *line, unsigned index, unsigned len,
|
|
unicode_t *res) ;
|
|
unsigned utf8_revdelta( unsigned char *buf, unsigned pos) ;
|
|
unsigned unicode_to_utf8( unicode_t c, char *utf8) ;
|
|
|
|
#endif
|