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

Function token_is_comment

dpdk/examples/pipeline/cli.c:1288–1297  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1286#define GROUP_MEMBER_INFO_TOKENS_MAX 6
1287
1288static int
1289token_is_comment(const char *token)
1290{
1291 if ((token[0] == '#') ||
1292 (token[0] == ';') ||
1293 ((token[0] == '/') && (token[1] == '/')))
1294 return 1; /* TRUE. */
1295
1296 return 0; /* FALSE. */
1297}
1298
1299static int
1300pipeline_selector_group_member_read(const char *string,

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected