summaryrefslogtreecommitdiff
path: root/ucs2_to_utf8.h
blob: a3dcf2d71c708801c77e598c77511e3aa300628d (plain)
1
2
3
4
5
6
7
8
#ifndef _UCS2_TO_UTF8_H
#define _UCS2_TO_UTF8_H

int convert_ucs_to_utf8(char *input, char *output);
char *convert_utf8_to_ucs2(char *input, int *real_strlen);
void u8_dec(char *s, int *i);

#endif