X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=include%2Fyaz%2Fyaz-iconv.h;h=96f326ab7e71b94996f82bd97916d4ee83c00d77;hb=f9ee3b9ec26306b6397c37434e8066f084d33b3a;hp=c0ebdd74d89dd8a111e6f9534ce6f490e2fffbf6;hpb=43a9d38d20c1b1bcd1a03b2445a501d27526bd35;p=yaz-moved-to-github.git diff --git a/include/yaz/yaz-iconv.h b/include/yaz/yaz-iconv.h index c0ebdd7..96f326a 100644 --- a/include/yaz/yaz-iconv.h +++ b/include/yaz/yaz-iconv.h @@ -82,6 +82,22 @@ YAZ_EXPORT size_t yaz_write_UTF8_char(unsigned long x, char **outbuf, size_t *outbytesleft, int *error); +/* ctype.h macros ASCII based. That do not depend on LANG, nor require + unsigned int as argument */ +#define yaz_isdigit(x) ((x) >= '0' && (x) <= '9') +#define yaz_isspace(x) strchr(" \f\r\n\t\v", x) +#define yaz_toupper(x) ((x) + ('A' - 'a')) +#define yaz_isupper(x) ((x) >= 'A' && (x) <= 'Z') +#define yaz_tolower(x) ((x) + ('a' - 'A')) +#define yaz_islower(x) ((x) >= 'a' && (x) <= 'z') + +/** \brief check whether string apppers to be UTF-8 encoded + \param cstr string to check + \retval 1 OK (appears to be UTF-8) + \retval 0 definitely not UTF-8 +*/ +YAZ_EXPORT int yaz_utf8_check(const char *cstr); + YAZ_END_CDECL #endif