X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=include%2Fyaz%2Fyaz-iconv.h;h=9f08a41dd0b01e49168c0e972e7e1591b465e8f2;hp=4768805b037971ae2d13ebf36218d91892fb96c8;hb=aab0b586a68a6d8df06b045d8043b434c0234bea;hpb=8e9d2cec97def1cd8b89b1fe427f1a232661ec6f diff --git a/include/yaz/yaz-iconv.h b/include/yaz/yaz-iconv.h index 4768805..9f08a41 100644 --- a/include/yaz/yaz-iconv.h +++ b/include/yaz/yaz-iconv.h @@ -1,5 +1,5 @@ /* This file is part of the YAZ toolkit. - * Copyright (C) 1995-2008 Index Data. + * Copyright (C) Index Data. * All rights reserved. * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: @@ -51,64 +51,25 @@ typedef struct yaz_iconv_struct *yaz_iconv_t; #define YAZ_ICONV_EINVAL 4 /** \brief just like iconv_open(3) */ -YAZ_EXPORT yaz_iconv_t yaz_iconv_open (const char *tocode, - const char *fromcode); +YAZ_EXPORT yaz_iconv_t yaz_iconv_open(const char *tocode, const char *fromcode); /** \brief just like iconv(3) */ -YAZ_EXPORT size_t yaz_iconv (yaz_iconv_t cd, char **inbuf, size_t *inbytesleft, - char **outbuf, size_t *outbytesleft); +YAZ_EXPORT size_t yaz_iconv(yaz_iconv_t cd, char **inbuf, size_t *inbytesleft, + char **outbuf, size_t *outbytesleft); /** \brief returns last error - like errno for iconv(3) */ -YAZ_EXPORT int yaz_iconv_error (yaz_iconv_t cd); +YAZ_EXPORT int yaz_iconv_error(yaz_iconv_t cd); /** \brief just like iconv_close(3) */ -YAZ_EXPORT int yaz_iconv_close (yaz_iconv_t cd); +YAZ_EXPORT int yaz_iconv_close(yaz_iconv_t cd); /** \brief tests whether conversion is handled by YAZ' iconv or system iconv */ YAZ_EXPORT int yaz_iconv_isbuiltin(yaz_iconv_t cd); -/** \brief match strings - independent of case and '-' - \param s1 first string - \param s2 second string (May include wildcard ? and .) - \retval 0 strings are similar - \retval !=0 strings are different -*/ -YAZ_EXPORT int yaz_matchstr(const char *s1, const char *s2); - -/** \brief match a and b with some delimitor for b - \param a first second - \param b second string - \param b_del delimitor for b - \retval 0 strings are similar - \retval !=0 strings are different -*/ -YAZ_EXPORT int yaz_strcmp_del(const char *a, const char *b, const char *b_del); - - -/** \brief compares two buffers of different size - \param a first buffer - \param b second buffer - \param len_a length of first buffer - \retval len_b length of second buffer - \retval 0 buffers are equal - \retval >0 a > b - \retval <0 a < b -*/ -int yaz_memcmp(const void *a, const void *b, size_t len_a, size_t len_b); - - -/** \brief decodes UTF-8 sequence - \param inp input buffer with UTF-8 bytes - \param inbytesleft length of input buffer - \param no_read holds number of bytes read if conversion is successful - \param error pointer to error code if error occurs - \retval 0 if error - \retval >0 if conversion is successful -*/ -YAZ_EXPORT unsigned long yaz_read_UTF8_char(unsigned char *inp, +YAZ_EXPORT unsigned long yaz_read_UTF8_char(const unsigned char *inp, size_t inbytesleft, size_t *no_read, int *error); -/** \brief encodes UTF-8 sequence +/** \brief encodes UTF-8 sequence \param x the UNICODE value \param outbuf output buffer pointer, updated if conversion is successful \param outbytesleft length of buffer, updated if conversino is successful @@ -120,12 +81,29 @@ 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 /* * Local variables: * c-basic-offset: 4 + * c-file-style: "Stroustrup" * indent-tabs-mode: nil * End: * vim: shiftwidth=4 tabstop=8 expandtab