MCPcopy Index your code
hub / github.com/F-Stack/f-stack / main

Function main

tools/libutil/tests/flopen_test.c:193–210  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

191};
192
193int
194main(void)
195{
196 const char *result;
197 int i, nt;
198
199 nt = sizeof(t) / sizeof(*t);
200 printf("1..%d\n", nt);
201 for (i = 0; i < nt; ++i) {
202 if ((result = t[i].func()) != NULL)
203 printf("not ok %d - %s # %s\n", i + 1,
204 t[i].name, result);
205 else
206 printf("ok %d - %s\n", i + 1,
207 t[i].name);
208 }
209 exit(0);
210}

Callers

nothing calls this directly

Calls 1

printfFunction · 0.50

Tested by

no test coverage detected