HomeSort by: relevance | last modified time | path
    Searched defs:nonwhitespace (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/arch/alpha/stand/standtest/
test.c 177 size_t nonwhitespace, i; local in function:dispatch_cmd
188 nonwhitespace = 0;
189 while ((buf[nonwhitespace] != '\0') && !isspace(buf[nonwhitespace]))
190 nonwhitespace++;
192 /* at this point, nonwhitespace should always be non-zero */
193 if (nonwhitespace == 0) {
194 printf("assertion failed: dispatch_cmd: nonwhitespace == 0\n");
202 if (strncmp(buf, try->cmd, nonwhitespace) == 0) {
209 (*winner->fn)(buf + nonwhitespace);
    [all...]
test.c 177 size_t nonwhitespace, i; local in function:dispatch_cmd
188 nonwhitespace = 0;
189 while ((buf[nonwhitespace] != '\0') && !isspace(buf[nonwhitespace]))
190 nonwhitespace++;
192 /* at this point, nonwhitespace should always be non-zero */
193 if (nonwhitespace == 0) {
194 printf("assertion failed: dispatch_cmd: nonwhitespace == 0\n");
202 if (strncmp(buf, try->cmd, nonwhitespace) == 0) {
209 (*winner->fn)(buf + nonwhitespace);
    [all...]

Completed in 125 milliseconds