MCPcopy Create free account
hub / github.com/F-Stack/f-stack / isblank2

Function isblank2

dpdk/lib/cmdline/cmdline_parse.c:26–33  ·  view source on GitHub ↗

isblank() needs _XOPEN_SOURCE >= 600 || _ISOC99_SOURCE, so use our * own. */

Source from the content-addressed store, hash-verified

24/* isblank() needs _XOPEN_SOURCE >= 600 || _ISOC99_SOURCE, so use our
25 * own. */
26static int
27isblank2(char c)
28{
29 if (c == ' ' ||
30 c == '\t' )
31 return 1;
32 return 0;
33}
34
35static int
36isendofline(char c)

Callers 4

cmdline_isendoftokenFunction · 0.70
match_instFunction · 0.70
__cmdline_parseFunction · 0.70
cmdline_completeFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected