| 399 | ****************************************************************************/ |
| 400 | |
| 401 | static char *skip_space(char *ptr) |
| 402 | { |
| 403 | while (*ptr && isspace((int)*ptr)) ptr++; |
| 404 | return ptr; |
| 405 | } |
| 406 | |
| 407 | /**************************************************************************** |
| 408 | * Name: dequote |
no test coverage detected