| 91 | ****************************************************************************/ |
| 92 | |
| 93 | static char *skip_space(char *ptr) |
| 94 | { |
| 95 | while (*ptr && isspace((int)*ptr)) ptr++; |
| 96 | return ptr; |
| 97 | } |
| 98 | |
| 99 | /**************************************************************************** |
| 100 | * Name: find_name_end |
no test coverage detected