Kannel: Open Source WAP and SMS gateway
svn-r5336
|
#include "wsint.h"
Go to the source code of this file.
Macros | |
#define | WS_UTF8_ENC_1_M 0xffffff80 |
#define | WS_UTF8_ENC_2_M 0xfffff800 |
#define | WS_UTF8_ENC_3_M 0xffff0000 |
#define | WS_UTF8_ENC_4_M 0xffe00000 |
#define | WS_UTF8_ENC_5_M 0xfc000000 |
#define | WS_UTF8_ENC_6_M 0x80000000 |
#define | WS_UTF8_ENC_C_BITS 0x80 |
#define | WS_UTF8_CONT_DATA_MASK 0x3f |
#define | WS_UTF8_ENC_TYPE(ch) |
#define | WS_UTF8_DEC_1_M 0x80 |
#define | WS_UTF8_DEC_2_M 0xe0 |
#define | WS_UTF8_DEC_3_M 0xf0 |
#define | WS_UTF8_DEC_4_M 0xf8 |
#define | WS_UTF8_DEC_5_M 0xfc |
#define | WS_UTF8_DEC_6_M 0xfe |
#define | WS_UTF8_DEC_1_V 0x00 |
#define | WS_UTF8_DEC_2_V 0xc0 |
#define | WS_UTF8_DEC_3_V 0xe0 |
#define | WS_UTF8_DEC_4_V 0xf0 |
#define | WS_UTF8_DEC_5_V 0xf8 |
#define | WS_UTF8_DEC_6_V 0xfc |
#define | WS_UTF8_DEC_C_M 0xc0 |
#define | WS_UTF8_DEC_C_V 0x80 |
#define | WS_UTF8_DEC_TYPE(b) |
#define | WS_UTF8_DEC_C_P(b) (((b) & WS_UTF8_DEC_C_M) == WS_UTF8_DEC_C_V) |
Functions | |
WsUtf8String * | ws_utf8_alloc () |
void | ws_utf8_free (WsUtf8String *string) |
int | ws_utf8_append_char (WsUtf8String *string, unsigned long ch) |
int | ws_utf8_verify (const unsigned char *data, size_t len, size_t *strlen_return) |
int | ws_utf8_set_data (WsUtf8String *string, const unsigned char *data, size_t len) |
int | ws_utf8_get_char (const WsUtf8String *string, unsigned long *ch_return, size_t *posp) |
unsigned char * | ws_utf8_to_latin1 (const WsUtf8String *string, unsigned char unknown_char, size_t *len_return) |
void | ws_utf8_free_data (unsigned char *data) |
Variables | |
static unsigned char | utf8_hibits [7] |
static unsigned char | utf8_hidata_masks [7] |
#define WS_UTF8_CONT_DATA_MASK 0x3f |
Definition at line 102 of file wsutf8.c.
Referenced by ws_utf8_append_char(), and ws_utf8_get_char().
#define WS_UTF8_DEC_C_P | ( | b | ) | (((b) & WS_UTF8_DEC_C_M) == WS_UTF8_DEC_C_V) |
Definition at line 178 of file wsutf8.c.
Referenced by ws_utf8_verify().
#define WS_UTF8_DEC_TYPE | ( | b | ) |
Definition at line 161 of file wsutf8.c.
Referenced by ws_utf8_get_char(), and ws_utf8_verify().
#define WS_UTF8_ENC_C_BITS 0x80 |
Definition at line 99 of file wsutf8.c.
Referenced by ws_utf8_append_char().
#define WS_UTF8_ENC_TYPE | ( | ch | ) |
Definition at line 108 of file wsutf8.c.
Referenced by ws_utf8_append_char().
WsUtf8String* ws_utf8_alloc | ( | void | ) |
Definition at line 182 of file wsutf8.c.
References ws_calloc().
Referenced by ws_bc_encode(), and ws_yy_lex().
int ws_utf8_append_char | ( | WsUtf8String * | string, |
unsigned long | ch | ||
) |
Definition at line 198 of file wsutf8.c.
References WsUtf8StringRec::data, WsUtf8StringRec::len, utf8_hibits, ws_fatal(), ws_realloc(), WS_UTF8_CONT_DATA_MASK, WS_UTF8_ENC_C_BITS, and WS_UTF8_ENC_TYPE.
Referenced by ws_yy_lex().
void ws_utf8_free | ( | WsUtf8String * | string | ) |
Definition at line 188 of file wsutf8.c.
References WsUtf8StringRec::data, and ws_free().
Referenced by ws_bc_encode(), and ws_yy_lex().
void ws_utf8_free_data | ( | unsigned char * | data | ) |
Definition at line 368 of file wsutf8.c.
References ws_free().
Referenced by pragma_meta(), and ws_bc_encode().
int ws_utf8_get_char | ( | const WsUtf8String * | string, |
unsigned long * | ch_return, | ||
size_t * | posp | ||
) |
Definition at line 293 of file wsutf8.c.
References WsUtf8StringRec::len, utf8_hidata_masks, WS_UTF8_CONT_DATA_MASK, and WS_UTF8_DEC_TYPE.
Referenced by main(), and ws_utf8_to_latin1().
int ws_utf8_set_data | ( | WsUtf8String * | string, |
const unsigned char * | data, | ||
size_t | len | ||
) |
Definition at line 266 of file wsutf8.c.
References WsUtf8StringRec::data, ws_free(), ws_memdup(), and ws_utf8_verify().
Referenced by ws_bc_encode().
unsigned char* ws_utf8_to_latin1 | ( | const WsUtf8String * | string, |
unsigned char | unknown_char, | ||
size_t * | len_return | ||
) |
Definition at line 332 of file wsutf8.c.
References WsUtf8StringRec::num_chars, ws_fatal(), ws_malloc(), and ws_utf8_get_char().
Referenced by pragma_meta(), and ws_bc_encode().
int ws_utf8_verify | ( | const unsigned char * | data, |
size_t | len, | ||
size_t * | strlen_return | ||
) |
Definition at line 233 of file wsutf8.c.
References WS_UTF8_DEC_C_P, and WS_UTF8_DEC_TYPE.
Referenced by ws_bc_decode(), and ws_utf8_set_data().
|
static |
Definition at line 87 of file wsutf8.c.
Referenced by ws_utf8_append_char().
|
static |
Definition at line 142 of file wsutf8.c.
Referenced by ws_utf8_get_char().