** Initialize and destroy a ShellText object */
| 814 | ** Initialize and destroy a ShellText object |
| 815 | */ |
| 816 | static void initText(ShellText *p){ |
| 817 | memset(p, 0, sizeof(*p)); |
| 818 | } |
| 819 | static void freeText(ShellText *p){ |
| 820 | free(p->z); |
| 821 | initText(p); |
no outgoing calls
no test coverage detected