adding ase_wctomb

This commit is contained in:
2008-10-14 09:04:24 +00:00
parent dc0203008e
commit 559d3fba6f
4 changed files with 51 additions and 14 deletions

View File

@ -37,8 +37,27 @@ extern "C" {
extern ase_ccls_t* ase_ccls;
ase_bool_t ase_ccls_is (ase_cint_t c, int type);
ase_cint_t ase_ccls_to (ase_cint_t c, int type);
ase_bool_t ase_ccls_is (
ase_cint_t c,
ase_ccls_type_t type
);
ase_cint_t ase_ccls_to (
ase_cint_t c,
ase_ccls_type_t type
);
ase_size_t ase_wctomb (
ase_wchar_t wc,
ase_mchar_t* mb,
ase_size_t mblen
);
ase_size_t ase_mbtowc (
const ase_mchar_t* mb,
ase_size_t mblen,
ase_wchar_t* wc
);
#ifdef __cplusplus
}