| Absolute File Name: | /home/opencoverage/opencoverage/guest-scripts/coreutils/src/gnulib/lib/xasprintf.c |
| Switch to Source code | Preprocessed file |
| Line | Source | Count |
|---|---|---|
| 1 | - | |
| 2 | - | |
| 3 | - | |
| 4 | char * | - |
| 5 | xasprintf (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: result;return result;Executed by:
executed 216 times by 1 test: return result;Executed by:
| 216 |
| 25 | } | - |
| Switch to Source code | Preprocessed file |