summaryrefslogtreecommitdiff
path: root/cscmd/utf8ing.h
blob: d96cda8dab72a84fd54abd34527f0e797d5847c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef    __UTF8_H
#define    __UTF8_H


typedef unsigned int   ucs4_t;
typedef unsigned char  utf8_t;


#ifdef __cplusplus
extern "C" {
#endif


extern int copy_ucs4_to_utf8( utf8_t *, const ucs4_t * );


#ifdef __cplusplus
}
#endif

#endif  /* __UTF8_H */