]> git.sur5r.net Git - openldap/blobdiff - include/ldap_pvt_uc.h
Cleanup NT service support declarations
[openldap] / include / ldap_pvt_uc.h
index fb3b29b5a07c03f77b05dd8ed818f425d7bfb00e..cffebaa47c85da3fd212253d46784cd9e0d0b13c 100644 (file)
@@ -1,6 +1,6 @@
 /* $OpenLDAP$ */
 /*
- * Copyright 1998-2002 The OpenLDAP Foundation, Redwood City, California, USA
+ * Copyright 1998-2003 The OpenLDAP Foundation, Redwood City, California, USA
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
 
 #include <lber.h>                              /* get ber_slen_t */
 
-#ifdef _MSC_VER
 #include "../libraries/liblunicode/ucdata/ucdata.h"
-#else
-#include "../libraries/liblunicode/ucdata.h"
-#endif
 
 LDAP_BEGIN_DECL
 
@@ -39,6 +35,11 @@ typedef unsigned long ldap_unicode_t;
 #define ldap_utf8_to_unicode( p ) ldap_utf8_to_ucs4((p))
 #define ldap_unicode_to_utf8( c, buf ) ldap_ucs4_to_ucs4((c),(buf))
 
+/* Convert a string with csize octets per character to UTF-8 */
+LDAP_F( int ) ldap_ucs_to_utf8s LDAP_P((
+       struct berval *ucs, int csize, struct berval *utf8s ));
+
+
 /* returns the number of bytes in the UTF-8 string */
 LDAP_F (ber_len_t) ldap_utf8_bytes( const char * );
 /* returns the number of UTF-8 characters in the string */
@@ -84,16 +85,16 @@ LDAP_F (char*) ldap_utf8_strtok( char* sp, const char* sep, char **last);
 LDAP_V (const char) ldap_utf8_lentab[128];
 LDAP_V (const char) ldap_utf8_mintab[32];
 
-#define LDAP_UTF8_ISASCII(p) ( !(*(unsigned char *)(p) & 0x80 ) )
+#define LDAP_UTF8_ISASCII(p) ( !(*(const unsigned char *)(p) & 0x80 ) )
 #define LDAP_UTF8_CHARLEN(p) ( LDAP_UTF8_ISASCII(p) \
-       ? 1 : ldap_utf8_lentab[*(unsigned char *)(p) ^ 0x80] )
+       ? 1 : ldap_utf8_lentab[*(const unsigned char *)(p) ^ 0x80] )
 
 /* This is like CHARLEN but additionally validates to make sure
  * the char used the shortest possible encoding.
  * 'l' is used to temporarily hold the result of CHARLEN.
  */
 #define LDAP_UTF8_CHARLEN2(p, l) ( ( ( l = LDAP_UTF8_CHARLEN( p )) < 3 || \
-       ( ldap_utf8_mintab[*(unsigned char *)(p) & 0x1f] & (p)[1] ) ) ? \
+       ( ldap_utf8_mintab[*(const unsigned char *)(p) & 0x1f] & (p)[1] ) ) ? \
        l : 0 )
 
 #define LDAP_UTF8_OFFSET(p) ( LDAP_UTF8_ISASCII(p) \
@@ -137,21 +138,20 @@ LDAP_LUNICODE_F(void) ucstr2upper(
        ldap_unicode_t *,
        ber_len_t );
 
-#define LDAP_UTF8_CASEFOLD             0x1U
 #define LDAP_UTF8_NOCASEFOLD   0x0U
-
-LDAP_LUNICODE_F(char *) UTF8normalize(
-       struct berval *,
-       unsigned );
+#define LDAP_UTF8_CASEFOLD     0x1U
+#define LDAP_UTF8_ARG1NFC      0x2U
+#define LDAP_UTF8_ARG2NFC      0x4U
+#define LDAP_UTF8_APPROX       0x8U
 
 LDAP_LUNICODE_F(struct berval *) UTF8bvnormalize(
        struct berval *,
        struct berval *,
        unsigned );
 
-LDAP_LUNICODE_F(int) UTF8normcmp(
-       const char *,
-       const char *,
+LDAP_LUNICODE_F(int) UTF8bvnormcmp(
+       struct berval *,
+       struct berval *,
        unsigned );
 
 LDAP_END_DECL