aboutsummaryrefslogtreecommitdiff
path: root/include/ctype.h
diff options
context:
space:
mode:
authorTim J. Robbins <tjr@FreeBSD.org>2004-06-23 07:01:44 +0000
committerTim J. Robbins <tjr@FreeBSD.org>2004-06-23 07:01:44 +0000
commitddc1eded85352aaaea972947cbf133d0ded34d53 (patch)
treed89ed2a150bbb4fcdbff69b2c14d5d87b5dfbdfe /include/ctype.h
parent587a4462c938e6c9fca15367c9d05246237b3fa5 (diff)
downloadsrc-ddc1eded85352aaaea972947cbf133d0ded34d53.tar.gz
src-ddc1eded85352aaaea972947cbf133d0ded34d53.zip
Notes
Diffstat (limited to 'include/ctype.h')
-rw-r--r--include/ctype.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/ctype.h b/include/ctype.h
index 6985410c1425..7ab3bbfd7c02 100644
--- a/include/ctype.h
+++ b/include/ctype.h
@@ -190,7 +190,7 @@ static __inline int
__maskrune(__ct_rune_t _c, unsigned long _f)
{
return ((_c < 0 || _c >= _CACHED_RUNES) ? ___runetype(_c) :
- _CurrentRuneLocale->runetype[_c]) & _f;
+ _CurrentRuneLocale->__runetype[_c]) & _f;
}
static __inline int
@@ -203,21 +203,21 @@ static __inline int
__isctype(__ct_rune_t _c, unsigned long _f)
{
return (_c < 0 || _c >= _CACHED_RUNES) ? 0 :
- !!(_DefaultRuneLocale.runetype[_c] & _f);
+ !!(_DefaultRuneLocale.__runetype[_c] & _f);
}
static __inline __ct_rune_t
__toupper(__ct_rune_t _c)
{
return (_c < 0 || _c >= _CACHED_RUNES) ? ___toupper(_c) :
- _CurrentRuneLocale->mapupper[_c];
+ _CurrentRuneLocale->__mapupper[_c];
}
static __inline __ct_rune_t
__tolower(__ct_rune_t _c)
{
return (_c < 0 || _c >= _CACHED_RUNES) ? ___tolower(_c) :
- _CurrentRuneLocale->maplower[_c];
+ _CurrentRuneLocale->__maplower[_c];
}
#else /* not using inlines */