Return pointer to first non-whitespace char in given string. */
| 41 | |
| 42 | /* Return pointer to first non-whitespace char in given string. */ |
| 43 | static char* lskip(const char* s) |
| 44 | { |
| 45 | while (*s && isspace((unsigned char)(*s))) |
| 46 | s++; |
| 47 | return (char*)s; |
| 48 | } |
| 49 | |
| 50 | /* Return pointer to first char (of chars) or inline comment in given string, |
| 51 | or pointer to null at end of string if neither found. Inline comment must |