** Initialize and destroy a ShellText object */
| 1420 | ** Initialize and destroy a ShellText object |
| 1421 | */ |
| 1422 | static void initText(ShellText *p){ |
| 1423 | memset(p, 0, sizeof(*p)); |
| 1424 | } |
| 1425 | static void freeText(ShellText *p){ |
| 1426 | free(p->z); |
| 1427 | initText(p); |
no outgoing calls
no test coverage detected