OpenCoverage

asnprintf.c

Absolute File Name:/home/opencoverage/opencoverage/guest-scripts/coreutils/src/lib/asnprintf.c
Switch to Source codePreprocessed file
LineSourceCount
1-
2-
3-
4-
5-
6char *-
7asnprintf (char *resultbuf, size_t *lengthp, const char *format, ...)-
8{-
9 va_list args;-
10 char *result;-
11-
12 -
13 __builtin_va_start(-
14 args-
15 ,-
16 format-
17 )-
18 ;-
19 result = vasnprintf (resultbuf, lengthp, format, args);-
20 -
21 __builtin_va_end(-
22 args-
23 )-
24 ;-
25 return
never executed: return result;
result;
never executed: return result;
0
26}-
Switch to Source codePreprocessed file

Generated by Squish Coco 4.1.2