Home | History | Annotate | Download | only in stage2

Lines Matching refs:cmdline

0 /* cmdline.c - the device-independent GRUB text command line */
30 /* Find the next word from CMDLINE and return the pointer. If
34 skip_to (int after_equal, char *cmdline)
37 while (*cmdline && *cmdline != ' ' && *cmdline != '\t' &&
38 ! (after_equal && *cmdline == '='))
39 cmdline ++;
42 while (*cmdline == ' ' || *cmdline == '\t' ||
43 (after_equal && *cmdline == '='))
44 cmdline ++;
46 return cmdline;