skip_toeol 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 skip_toeol 600 modules/user_menu_edit.c const char* skip_toeol(const char* p) { while (*p && *p!='\r' && *p!='\n') p++; return p; } // Skip to end of line