File: utf8.h

package info (click to toggle)
swftools 0.9.2%2Bds1-3
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 9,488 kB
  • sloc: ansic: 122,576; sh: 8,494; cpp: 8,020; yacc: 2,260; lisp: 904; makefile: 581; python: 304
file content (15 lines) | stat: -rw-r--r-- 201 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef __utf8_h__
#define __utf8_h__

#ifdef __cplusplus
extern "C" {
#endif

int writeUTF8(unsigned int charnum, char*dest);
char* getUTF8(unsigned int charnum);

#ifdef __cplusplus
}
#endif

#endif