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