| 75 | } |
| 76 | |
| 77 | static void eatThru(char val, char **table_p) |
| 78 | { |
| 79 | register char *table = *table_p; |
| 80 | register BOOL found = NO; |
| 81 | |
| 82 | while (*table && !found) |
| 83 | { |
| 84 | if (*table == '\\') table += 2; |
| 85 | else |
| 86 | { |
| 87 | if (*table == val) found = YES; |
| 88 | table++; |
| 89 | } |
| 90 | } |
| 91 | *table_p = table; |
| 92 | } |
| 93 | |
| 94 | char * |
| 95 | newStringFromList( |
no outgoing calls
no test coverage detected