X-Git-Url: http://git.silcnet.org/gitweb/?a=blobdiff_plain;f=lib%2Fsilcutil%2Fsilcutf8.h;h=f82142d1f6479dea6dc3e5475e9858308cde26eb;hb=c27a4ecc3e616e8a5ee09b8ca888ed6ff3e501f7;hp=ba09b4e91f4f48dd2c8bf14001db6da6784f937e;hpb=f60ca1494b58b5b2340e1780adf7422eacf5fed1;p=silc.git diff --git a/lib/silcutil/silcutf8.h b/lib/silcutil/silcutf8.h index ba09b4e9..f82142d1 100644 --- a/lib/silcutil/silcutf8.h +++ b/lib/silcutil/silcutf8.h @@ -114,7 +114,7 @@ SilcUInt32 silc_utf8_decoded_len(const unsigned char *bin, SilcUInt32 bin_len, * * SYNOPSIS * - * bool silc_utf8_valid(const unsigned char *utf8, SilcUInt32 utf8_len); + * SilcBool silc_utf8_valid(const unsigned char *utf8, SilcUInt32 utf8_len); * * DESCRIPTION * @@ -122,13 +122,13 @@ SilcUInt32 silc_utf8_decoded_len(const unsigned char *bin, SilcUInt32 bin_len, * UTF-8 encoded string, FALSE if it is not UTF-8 encoded string. * ***/ -bool silc_utf8_valid(const unsigned char *utf8, SilcUInt32 utf8_len); +SilcBool silc_utf8_valid(const unsigned char *utf8, SilcUInt32 utf8_len); /****f* silcutil/SilcStrUtilAPI/silc_utf8_strcasecmp * * SYNOPSIS * - * bool silc_utf8_strcasecmp(const char *s1, const char *s2); + * SilcBool silc_utf8_strcasecmp(const char *s1, const char *s2); * * DESCRIPTION * @@ -141,13 +141,13 @@ bool silc_utf8_valid(const unsigned char *utf8, SilcUInt32 utf8_len); * Unicode characters will be ignored when comparing. * ***/ -bool silc_utf8_strcasecmp(const char *s1, const char *s2); +SilcBool silc_utf8_strcasecmp(const char *s1, const char *s2); /****f* silcutil/SilcStrUtilAPI/silc_utf8_strncasecmp * * SYNOPSIS * - * bool silc_utf8_strcasecmp(const char *s1, const char *s2, + * SilcBool silc_utf8_strcasecmp(const char *s1, const char *s2, * SilcUInt32 n); * * DESCRIPTION @@ -161,6 +161,6 @@ bool silc_utf8_strcasecmp(const char *s1, const char *s2); * Unicode characters will be ignored when comparing. * ***/ -bool silc_utf8_strncasecmp(const char *s1, const char *s2, SilcUInt32 n); +SilcBool silc_utf8_strncasecmp(const char *s1, const char *s2, SilcUInt32 n); #endif /* SILCUTF8_H */