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

/osnet-11/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);

Completed in 22 milliseconds