summaryrefslogtreecommitdiffstats
path: root/ucs.h
blob: f824bc0f351ca17e5b557c95a9dd78a15e967cfc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/**
 * ucs.c
 */

#ifndef __UCS_H__
#define __UCS_H__

#include "types.h"

u32 beucs2(u16 *ucs2);
u32 ucs2len(u16 *ucs2);
void print_ucs2_as_utf8(u16 *ucs2);

#endif