Returns a pointer to the first non-whitespace char in given string
| 1383 | |
| 1384 | // Returns a pointer to the first non-whitespace char in given string |
| 1385 | char *SkipInitialWhitespace(char *s) { |
| 1386 | while ((*s) != '\0' && isspace(*s)) |
| 1387 | s++; |
| 1388 | |
| 1389 | return (s); |
| 1390 | } |
| 1391 | |
| 1392 | // Read in the Messages |
| 1393 | int ReadMessageFile(const char *filename) { |