Home
last modified time | relevance | path

Searched refs:ldap_utf8getcc (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/libldap5/include/ldap/
H A Dsolaris-int.h516 LDAP_API(unsigned long) LDAP_CALL ldap_utf8getcc( const char** src );
539 #define LDAP_UTF8GETCC(s) ((0x80 & *(unsigned char*)(s)) ? ldap_utf8getcc (&s) : *s++)
540 #define LDAP_UTF8GETC(s) ((0x80 & *(unsigned char*)(s)) ? ldap_utf8getcc ((const char**)&s) : *s++)
/illumos-gate/usr/src/lib/libldap5/sources/ldap/common/
H A Dldaputf8.c120 ldap_utf8getcc( const char** src ) in ldap_utf8getcc() function