OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:iswprint
(Results
1 - 4
of
4
) sorted by null
/external/bison/lib/
mbswidth.c
46
/* Get
iswprint
(), iswcntrl(). */
50
#if !defined
iswprint
&& !HAVE_ISWPRINT
51
# define
iswprint
(wc) 1
macro
74
# define wcwidth(wc) ((wc) == 0 ? 0 :
iswprint
(wc) ? 1 : -1)
quotearg.c
57
# define
iswprint
(wc) isprint ((unsigned char) (wc))
macro
65
#ifndef
iswprint
69
# if !defined
iswprint
&& !HAVE_ISWPRINT
70
# define
iswprint
(wc) 1
macro
466
if (!
iswprint
(w))
/external/stlport/stlport/
ctype.h
94
__inline int (
iswprint
)(int c) { return iswctype((unsigned short)(c), _BLANK|_PUNCT|_ALPHA|_DIGIT); }
function
/bionic/libc/stdlib/
wchar.c
126
int
iswprint
(wint_t wc) { return isprint(wc); }
function
Completed in 80 milliseconds