Home | History | Annotate | Download | only in tests

Lines Matching refs:skip_ws

37 	if (strcmp(skip_ws(""), ""))
38 error("skip_ws of \"\" is not \"\"");
39 if (strcmp(skip_ws("\na"), "a"))
40 error("skip_ws of \\na is not a");
41 if (strcmp(skip_ws("\n\na"), "a"))
42 error("skip_ws of \\n\\na is not a");
43 if (strcmp(skip_ws("\n a"), "a"))
44 error("skip_ws of \\n a is not a");
45 if (strcmp(skip_ws("\n \ta"), "a"))
46 error("skip_ws of \\n \\ta is not a");
47 if (strcmp(skip_ws("\n \t"), ""))
48 error("skip_ws of \\n \\t is not \"\"");
49 if (strcmp(skip_ws(" "), ""))
50 error("skip_ws of \" \" is not \"\"");