* UTF-8 (in utf-8.c)
*/
+/* returns the number of bytes in the UTF-8 string
+ (counting the NULL) */
LIBLDAP_F (ber_len_t) ldap_utf8_bytes( const char * );
+/* returns the number of UTF-8 characters in the string */
LIBLDAP_F (ber_len_t) ldap_utf8_chars( const char * );
+/* returns the length (in bytes) of a UTF-8 string */
LIBLDAP_F (int) ldap_utf8_charlen( const char * );
+/* copies a UTF-8 character and returning number of bytes copied */
+LIBLDAP_F (int) ldap_utf8_copy( char *, const char *);
+/* returns pointer of next UTF-8 character in string */
LIBLDAP_F (char*) ldap_utf8_next( const char * );
+/* returns pointer of previous UTF-8 character in string */
LIBLDAP_F (char*) ldap_utf8_prev( const char * );
+/* primitive ctype routines -- not aware of non-ascii characters */
LIBLDAP_F (int) ldap_utf8_isascii( const char * );
-LIBLDAP_F (int) ldap_utf8_isalpa( const char * );
+LIBLDAP_F (int) ldap_utf8_isalpha( const char * );
LIBLDAP_F (int) ldap_utf8_isalnum( const char * );
LIBLDAP_F (int) ldap_utf8_isdigit( const char * );
LIBLDAP_F (int) ldap_utf8_isxdigit( const char * );
LIBLDAP_F (int) ldap_utf8_isspace( const char * );
+/* span characters not in set, return bytes spanned */
LIBLDAP_F (ber_len_t) ldap_utf8_strcspn( const char* str, const char *set);
+/* span characters in set, return bytes spanned */
LIBLDAP_F (ber_len_t) ldap_utf8_strspn( const char* str, const char *set);
+/* return first character of set in string */
LIBLDAP_F (char *) ldap_utf8_strpbrk( const char* str, const char *set);
+/* reentrant tokenizer */
LIBLDAP_F (char*) ldap_utf8_strtok( char* sp, const char* sep, char **last);
+/* Optimizations */
+#define LDAP_UTF8_CHARLEN(p) (*(unsigned char *)(p) < 0x100 \
+ ? 1 : ldap_utf8_charlen((p)))
+
+#define LDAP_UTF8_COPY(p) (*(unsigned char *)(s) < 0x100 \
+ ? (*(d) = *(s), 1) : ldap_utf8_cpy((d),(s)))
+
+#define LDAP_UTF8_NEXT(p) (*(unsigned char *)(p) < 0x100 \
+ ? &(p)[1] : ldap_utf8_next((p)))
+
+#define LDAP_UTF8_INCR(p) (*(unsigned char *)(p) < 0x100 \
+ ? ++(p) : (p)=ldap_utf8_next((p)))
+
+/* For symmetry */
+#define LDAP_UTF8_PREV(p) (ldap_utf8_prev((p)))
+#define LDAP_UTF8_DECR(p) ((p)=ldap_utf8_prev((p)))
LDAP_END_DECL