mirror of git://sourceware.org/git/glibc.git
(iswalpha, iswdigit, iswlower, iswspace, iswxdigit, iswtolower, iswtoupper): Add libc_hidden_def.
This commit is contained in:
parent
680fbe5429
commit
b1b54458af
|
@ -40,14 +40,17 @@ extern const char *__ctype32_wctrans[2] attribute_hidden;
|
||||||
func (iswalnum, __ISwalnum)
|
func (iswalnum, __ISwalnum)
|
||||||
#undef iswalpha
|
#undef iswalpha
|
||||||
func (iswalpha, __ISwalpha)
|
func (iswalpha, __ISwalpha)
|
||||||
|
libc_hidden_def (iswalpha)
|
||||||
#undef iswblank
|
#undef iswblank
|
||||||
func (iswblank, __ISwblank)
|
func (iswblank, __ISwblank)
|
||||||
#undef iswcntrl
|
#undef iswcntrl
|
||||||
func (iswcntrl, __ISwcntrl)
|
func (iswcntrl, __ISwcntrl)
|
||||||
#undef iswdigit
|
#undef iswdigit
|
||||||
func (iswdigit, __ISwdigit)
|
func (iswdigit, __ISwdigit)
|
||||||
|
libc_hidden_def (iswdigit)
|
||||||
#undef iswlower
|
#undef iswlower
|
||||||
func (iswlower, __ISwlower)
|
func (iswlower, __ISwlower)
|
||||||
|
libc_hidden_def (iswlower)
|
||||||
#undef iswgraph
|
#undef iswgraph
|
||||||
func (iswgraph, __ISwgraph)
|
func (iswgraph, __ISwgraph)
|
||||||
#undef iswprint
|
#undef iswprint
|
||||||
|
@ -56,10 +59,12 @@ func (iswprint, __ISwprint)
|
||||||
func (iswpunct, __ISwpunct)
|
func (iswpunct, __ISwpunct)
|
||||||
#undef iswspace
|
#undef iswspace
|
||||||
func (iswspace, __ISwspace)
|
func (iswspace, __ISwspace)
|
||||||
|
libc_hidden_def (iswspace)
|
||||||
#undef iswupper
|
#undef iswupper
|
||||||
func (iswupper, __ISwupper)
|
func (iswupper, __ISwupper)
|
||||||
#undef iswxdigit
|
#undef iswxdigit
|
||||||
func (iswxdigit, __ISwxdigit)
|
func (iswxdigit, __ISwxdigit)
|
||||||
|
libc_hidden_def (iswxdigit)
|
||||||
|
|
||||||
wint_t
|
wint_t
|
||||||
(towlower) (wc)
|
(towlower) (wc)
|
||||||
|
@ -67,6 +72,7 @@ wint_t
|
||||||
{
|
{
|
||||||
return wctrans_table_lookup (__ctype32_wctrans[__TOW_tolower], wc);
|
return wctrans_table_lookup (__ctype32_wctrans[__TOW_tolower], wc);
|
||||||
}
|
}
|
||||||
|
libc_hidden_def (towlower)
|
||||||
|
|
||||||
wint_t
|
wint_t
|
||||||
(towupper) (wc)
|
(towupper) (wc)
|
||||||
|
@ -74,3 +80,4 @@ wint_t
|
||||||
{
|
{
|
||||||
return wctrans_table_lookup (__ctype32_wctrans[__TOW_toupper], wc);
|
return wctrans_table_lookup (__ctype32_wctrans[__TOW_toupper], wc);
|
||||||
}
|
}
|
||||||
|
libc_hidden_def (towupper)
|
||||||
|
|
Loading…
Reference in New Issue