Returns a pointer to the first non-whitespace char in given string
| 201 | |
| 202 | // Returns a pointer to the first non-whitespace char in given string |
| 203 | char *SkipInitialWhitespace(char *s) { |
| 204 | while ((*s) != '\0' && isspace(*s)) |
| 205 | s++; |
| 206 | |
| 207 | return (s); |
| 208 | } |
| 209 | |
| 210 | // Read in the Messages |
| 211 | int ReadMessageFile(const char *filename) { |