| 108 | } |
| 109 | |
| 110 | int testString(int argc, char* argv[]) |
| 111 | { |
| 112 | int result = 0; |
| 113 | (void)argc; |
| 114 | (void)argv; |
| 115 | setlocale(LC_CTYPE, ""); |
| 116 | |
| 117 | result |= testString_isalnum(); |
| 118 | result |= testString_isalpha(); |
| 119 | result |= testString_isascii(); |
| 120 | result |= testString_isblank(); |
| 121 | result |= testString_iscntrl(); |
| 122 | result |= testString_isdigit(); |
| 123 | result |= testString_isgraph(); |
| 124 | result |= testString_islower(); |
| 125 | result |= testString_isprint(); |
| 126 | result |= testString_ispunct(); |
| 127 | result |= testString_isspace(); |
| 128 | result |= testString_isupper(); |
| 129 | result |= testString_isxdigit(); |
| 130 | result |= testString_tolower(); |
| 131 | result |= testString_toupper(); |
| 132 | |
| 133 | return result; |
| 134 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…