Returns a pointer to the first non-whitespace char in given string
| 281 | |
| 282 | // Returns a pointer to the first non-whitespace char in given string |
| 283 | char *SkipInitialWhitespace(char *s) { |
| 284 | while ((*s) != '\0' && isspace(*s)) |
| 285 | s++; |
| 286 | |
| 287 | return (s); |
| 288 | } |
| 289 | |
| 290 | // Read in the Messages |
| 291 | int ReadMessageFile(const char *filename) { |