diff options
author | Tim J. Robbins <tjr@FreeBSD.org> | 2004-06-23 07:01:44 +0000 |
---|---|---|
committer | Tim J. Robbins <tjr@FreeBSD.org> | 2004-06-23 07:01:44 +0000 |
commit | ddc1eded85352aaaea972947cbf133d0ded34d53 (patch) | |
tree | d89ed2a150bbb4fcdbff69b2c14d5d87b5dfbdfe /include/ctype.h | |
parent | 587a4462c938e6c9fca15367c9d05246237b3fa5 (diff) | |
download | src-ddc1eded85352aaaea972947cbf133d0ded34d53.tar.gz src-ddc1eded85352aaaea972947cbf133d0ded34d53.zip |
Notes
Diffstat (limited to 'include/ctype.h')
-rw-r--r-- | include/ctype.h | 8 |
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 */ |