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

Function main

tools/libutil/fparseln.c:214–225  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

212#ifdef TEST
213
214int
215main(int argc, char *argv[])
216{
217 char *ptr;
218 size_t size, line;
219
220 line = 0;
221 while ((ptr = fparseln(stdin, &size, &line, NULL,
222 FPARSELN_UNESCALL)) != NULL)
223 printf("line %d (%d) |%s|\n", line, size, ptr);
224 return 0;
225}
226
227/*
228

Callers

nothing calls this directly

Calls 2

fparselnFunction · 0.85
printfFunction · 0.50

Tested by

no test coverage detected