Home | Info | Community | Development | myReactOS | Contact Us
[static]
Definition at line 24 of file cmd.c.
Referenced by handle_escape_cmd().
{ char c; char *edit = s; char *text = s; while (( c = *edit++ )) { switch (c) { case KDBG_BS_CHAR: if (text > s) text --; break; default: *text++ = c; } } *text = '\0'; return s; }