Returns a pointer to the first non-whitespace char in given string
| 1531 | |
| 1532 | // Returns a pointer to the first non-whitespace char in given string |
| 1533 | char *SkipInitialWhitespace(char *s) { |
| 1534 | while ((*s) != '\0' && isspace(*s)) |
| 1535 | s++; |
| 1536 | |
| 1537 | return (s); |
| 1538 | } |
| 1539 | |
| 1540 | // Read in the Messages |
| 1541 | int ReadMessageFile(const char *filename) { |