skip_toeol         90 core/gui_script.c const char* skip_eol(const char *p)         { p = skip_toeol(p); if (*p == '\r') p++; if (*p == '\n') p++; return p; }  // Skip past end of line
skip_toeol        151 core/gui_script.c     int l = skip_toeol(ptr) - ptr;
skip_toeol        160 core/gui_script.c     int l = skip_toeol(ptr) - ptr;
skip_toeol        196 core/gui_script.c         int l = skip_toeol(ptr) - ptr;
skip_toeol        601 modules/user_menu_edit.c const char* skip_eol(const char *p)         { p = skip_toeol(p); if (*p == '\r') p++; if (*p == '\n') p++; return p; }      // Skip past end of line