Searched defs:character (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/lib/pam_modules/authtok_check/
H A Drules.c196 * this function takes two inputs, a class identifier and a character, and
197 * returns non-null if the given character is a member of the class, based
349 Char2Int(char character) argument
351 if (isdigit(character)) {
352 return (character - '0');
353 } else if (islower(character)) {
354 return (character - 'a' + 10);
355 } else if (isupper(character)) {
356 return (character - 'A' + 10);
/illumos-gate/usr/src/cmd/sgs/yacc/common/
H A Ddextern.h183 wchar_t character; member in struct:mbclit
184 int tvalue; /* token issued for the character */
205 * multibyte (c > 255) character literals are
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/chat/
H A Dchat.c54 * ignored. If a '#' is to be expected as the first character, the
240 char *character __P((int c));
861 * If this is the escape flag then reset it and ignore the character.
987 * Translate the input character to the appropriate string for printing
991 char *character(c) function
1233 usleep(10000); /* inter-character typing delay (?) */
1324 * Echo a character to stderr.
1325 * When called with -1, a '\n' character is generated when
1346 s = character(n);
1411 fprintf( stderr, "%s", character(
[all...]
/illumos-gate/usr/src/cmd/tip/
H A Dtip.h72 char *ES; /* escape character */
75 char *RC; /* raise character */
99 #define CHAR 010 /* character value */
156 #define character(v) ((((zzhack *)(&(v))))->zz_character) macro
258 char ccc; /* synchronization character */

Completed in 61 milliseconds