| Absolute File Name: | /home/opencoverage/opencoverage/guest-scripts/bash/src/lib/readline/savestring.c |
| Switch to Source code | Preprocessed file |
| Line | Source | Count |
|---|---|---|
| 1 | - | |
| 2 | - | |
| 3 | - | |
| 4 | - | |
| 5 | - | |
| 6 | char * | - |
| 7 | savestring (const char *s) | - |
| 8 | { | - |
| 9 | char *ret; | - |
| 10 | - | |
| 11 | ret = (char *)xmalloc (strlen (s) + 1); | - |
| 12 | strcpy (ret, s); | - |
| 13 | return never executed: ret;return ret;never executed: return ret; | 0 |
| 14 | } | - |
| Switch to Source code | Preprocessed file |