Return pointer to first non-whitespace char in given string. */
| 35 | |
| 36 | /* Return pointer to first non-whitespace char in given string. */ |
| 37 | static char* lskip(const char* s) |
| 38 | { |
| 39 | while (*s && isspace((unsigned char)(*s))) |
| 40 | s++; |
| 41 | return (char*)s; |
| 42 | } |
| 43 | |
| 44 | /* Return pointer to first char (of chars) or inline comment in given string, |
| 45 | or pointer to null at end of string if neither found. Inline comment must |
no test coverage detected