aboutsummaryrefslogtreecommitdiffstats
path: root/src/utf8.h
blob: cbfcb7f30eca00de00de80afea444aff5b234edd (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
/*
 * utf8.h:
 *
 * Copyright (c) 2008 James McKenzie <james@fishsoup.dhs.org>,
 * All rights reserved.
 *
 */

/*
 * $Id$
 */

/*
 * $Log$
 * Revision 1.2  2008/02/22 23:39:27  james
 * *** empty log message ***
 *
 * Revision 1.1  2008/02/22 19:12:05  james
 * *** empty log message ***
 *
 *
 */

#ifndef __UTF8_H__
#define __UTF8_H__


typedef struct
{
  int in_utf8;
  uint8_t utf_buf[4];
  int utf_ptr;
} UTF8;

#endif /* __UTF8_H__ */