OpenCoverage

xasprintf.c

Absolute File Name:/home/opencoverage/opencoverage/guest-scripts/coreutils/src/gnulib/lib/xasprintf.c
Switch to Source codePreprocessed file
LineSourceCount
1-
2-
3-
4char *-
5xasprintf (const char *format, ...)-
6{-
7 va_list args;-
8 char *result;-
9-
10 -
11 __builtin_va_start(-
12 args-
13 ,-
14 format-
15 )-
16 ;-
17 result = xvasprintf (format, args);-
18 -
19 __builtin_va_end(-
20 args-
21 )-
22 ;-
23-
24 return
executed 216 times by 1 test: return result;
Executed by:
  • stat
result;
executed 216 times by 1 test: return result;
Executed by:
  • stat
216
25}-
Switch to Source codePreprocessed file

Generated by Squish Coco 4.1.2