Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Christopher Ng
OpenLDAP
Commits
14b170ce
Commit
14b170ce
authored
21 years ago
by
Kurt Zeilenga
Browse files
Options
Downloads
Patches
Plain Diff
More blind s/unsigned long/ac_uint4/ changes
parent
cc743d2c
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libraries/liblunicode/ucdata/ucdata.h
+9
-9
9 additions, 9 deletions
libraries/liblunicode/ucdata/ucdata.h
with
9 additions
and
9 deletions
libraries/liblunicode/ucdata/ucdata.h
+
9
−
9
View file @
14b170ce
...
...
@@ -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
));
/**************************************************************************
*
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment