server/src/util/unicode.h

50 lines
1.8 KiB
C
Raw Normal View History

2010-08-08 10:06:34 +02:00
/*
2015-01-30 22:10:29 +01:00
Copyright (c) 1998-2015, Enno Rehling <enno@eressea.de>
Katja Zedel <katze@felidae.kn-bremen.de
Christian Schlittchen <corwin@amber.kn-bremen.de>
2010-08-08 10:06:34 +02:00
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
**/
#ifndef _UNICODE_H
#define _UNICODE_H
2019-08-01 18:40:42 +02:00
#include <stdint.h>
#include <stddef.h>
2010-08-08 10:06:34 +02:00
#ifdef __cplusplus
extern "C" {
#endif
#define USE_UNICODE
2019-08-01 18:40:42 +02:00
int unicode_utf8_to_cp437(unsigned char *result, const char * utf8_string,
size_t * length);
2019-08-01 18:40:42 +02:00
int unicode_utf8_to_cp1252(unsigned char *result, const char * utf8_string,
size_t * length);
2019-08-01 18:40:42 +02:00
int unicode_utf8_decode(wint_t * result, const char * utf8_string,
size_t * length);
2019-08-01 18:40:42 +02:00
int unicode_utf8_encode(char * result, size_t * size,
wint_t ucs4_character);
int unicode_utf8_to_ascii(unsigned char *cp_character, const char * utf8_string,
2016-08-07 19:19:35 +02:00
size_t *length);
2019-08-01 18:40:42 +02:00
int unicode_utf8_strcasecmp(const char * a, const char * b);
int unicode_latin1_to_utf8(char * out, size_t * outlen,
const char *in, size_t * inlen);
2019-08-01 18:40:42 +02:00
int unicode_utf8_tolower(char *op, size_t outlen, const char *ip);
size_t unicode_utf8_trim(char *ip);
2010-08-08 10:06:34 +02:00
#ifdef __cplusplus
}
#endif
#endif