IS_EOL             88 core/gui_script.c const char* skip_token(const char* p)       { while (*p && !IS_EOL(p) && !IS_SPACE(p) && (*p != '=')) p++; return p; }  // Skip past current token value
IS_EOL             89 core/gui_script.c const char* skip_toeol(const char* p)       { while (*p && !IS_EOL(p)) p++; return p; }                                 // Skip to end of line
IS_EOL             94 core/gui_script.c     while (!IS_EOL(p) && (*p != end)) p++;