Lines Matching full:character
1 /* Multibyte character data type.
19 /* A multibyte character is a short subsequence of a char* string,
20 representing a single wide character.
44 returns true if mbc is the standard ASCII character sc.
47 returns true if mbc is the nul character.
76 returns true if mbc is a control character.
82 returns true if mbc is a graphic character.
88 returns true if mbc is a printable character.
91 returns true if mbc is a punctuation character.
94 returns true if mbc is a space character.
110 assigns the standard ASCII character sc to mbc.
168 const char *ptr; /* pointer to current character */
169 size_t bytes; /* number of bytes of current character, > 0 */
170 bool wc_valid; /* true if wc is a valid wide character */
171 wchar_t wc; /* if wc_valid: the current character */
175 /* EOF (not a real character) is represented with bytes = 0 and
180 /* Access the current character. */
263 /* Copying a character. */
280 /* is_basic(c) tests whether the single-byte character c is in the
281 ISO C "basic character set".
307 /* The character set is ISO-646, not EBCDIC. */