From 14b170ce20e16b15d382ae24b9cfbf80240be2d1 Mon Sep 17 00:00:00 2001 From: Kurt Zeilenga Date: Tue, 9 Dec 2003 21:57:34 +0000 Subject: [PATCH] More blind s/unsigned long/ac_uint4/ changes --- libraries/liblunicode/ucdata/ucdata.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/libraries/liblunicode/ucdata/ucdata.h b/libraries/liblunicode/ucdata/ucdata.h index 6e0db34684..ef7de54427 100644 --- a/libraries/liblunicode/ucdata/ucdata.h +++ b/libraries/liblunicode/ucdata/ucdata.h @@ -120,7 +120,7 @@ LDAP_BEGIN_DECL * call this function with some set of masks. */ LDAP_LUNICODE_F (int) -ucisprop LDAP_P((ac_uint4 code, unsigned long mask1, ac_uint4 mask2)); +ucisprop LDAP_P((ac_uint4 code, ac_uint4 mask1, ac_uint4 mask2)); #define ucisalpha(cc) ucisprop(cc, UC_LU|UC_LL|UC_LM|UC_LO|UC_LT, 0) #define ucisdigit(cc) ucisprop(cc, UC_ND, 0) @@ -209,9 +209,9 @@ ucisprop LDAP_P((ac_uint4 code, unsigned long mask1, ac_uint4 mask2)); * **************************************************************************/ -LDAP_LUNICODE_F (ac_uint4) uctoupper LDAP_P((unsigned long code)); -LDAP_LUNICODE_F (ac_uint4) uctolower LDAP_P((unsigned long code)); -LDAP_LUNICODE_F (ac_uint4) uctotitle LDAP_P((unsigned long code)); +LDAP_LUNICODE_F (ac_uint4) uctoupper LDAP_P((ac_uint4 code)); +LDAP_LUNICODE_F (ac_uint4) uctolower LDAP_P((ac_uint4 code)); +LDAP_LUNICODE_F (ac_uint4) uctotitle LDAP_P((ac_uint4 code)); /************************************************************************** * @@ -224,7 +224,7 @@ LDAP_LUNICODE_F (ac_uint4) uctotitle LDAP_P((unsigned long code)); * If it returns 0, there is no composition. Any other value indicates a * composition was returned in comp. */ -LDAP_LUNICODE_F (int) uccomp LDAP_P((ac_uint4 node1, unsigned long node2, +LDAP_LUNICODE_F (int) uccomp LDAP_P((ac_uint4 node1, ac_uint4 node2, ac_uint4 *comp)); /* @@ -251,7 +251,7 @@ LDAP_LUNICODE_F (int) uccanoncomp LDAP_P((ac_uint4 *str, int len)); * returned. */ LDAP_LUNICODE_F (int) -ucdecomp LDAP_P((ac_uint4 code, unsigned long *num, +ucdecomp LDAP_P((ac_uint4 code, ac_uint4 *num, ac_uint4 **decomp)); /* @@ -259,7 +259,7 @@ ucdecomp LDAP_P((ac_uint4 code, unsigned long *num, * decompositions. */ LDAP_LUNICODE_F (int) -uckdecomp LDAP_P((ac_uint4 code, unsigned long *num, +uckdecomp LDAP_P((ac_uint4 code, ac_uint4 *num, ac_uint4 **decomp)); /* @@ -267,7 +267,7 @@ uckdecomp LDAP_P((ac_uint4 code, unsigned long *num, * passed. The array size should be at least 3. */ LDAP_LUNICODE_F (int) -ucdecomp_hangul LDAP_P((ac_uint4 code, unsigned long *num, +ucdecomp_hangul LDAP_P((ac_uint4 code, ac_uint4 *num, ac_uint4 decomp[])); /* @@ -298,7 +298,7 @@ uccompatdecomp LDAP_P((const ac_uint4 *in, int inlen, * This will return the combining class for a character to be used with the * Canonical Ordering algorithm. */ -LDAP_LUNICODE_F (ac_uint4) uccombining_class LDAP_P((unsigned long code)); +LDAP_LUNICODE_F (ac_uint4) uccombining_class LDAP_P((ac_uint4 code)); /************************************************************************** * -- 2.39.5