summaryrefslogtreecommitdiffstats
path: root/utf8.h
blob: 3bde4f00f54f1bf47973655344963979246e23dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/* ########################################################### */
/* This Software is licensed under the GPL licensed Version 2, */
/* please read http://www.gnu.org/copyleft/gpl.html            */
/* ########################################################### */

#ifndef UTF8_H
#define UTF8_H

typedef struct langinfo_s langinfo_t;

/* Locale informations */
/* """"""""""""""""""" */
struct langinfo_s
{
  int utf8; /* charset is UTF-8              */
  int bits; /* number of bits in the charset */
};

int
utf8_get_length(unsigned char c);

size_t
utf8_offset(char *, size_t);

char *
utf8_strprefix(char * d, char * s, long n, long * pos);

size_t
utf8_strlen(char * str);

wchar_t *
utf8_strtowcs(char * s);

void
utf8_sanitize(char * s);

void
utf8_interpret(char * s, langinfo_t * langinfo);

int
utf8_validate(const char * str, size_t length);

char *
utf8_prev(const char * str, const char * p);

char *
utf8_next(char * p);

void
utf8_strtolower(char * dst, char * src);

#endif