** Initialize and destroy a ShellText object */
| 941 | ** Initialize and destroy a ShellText object |
| 942 | */ |
| 943 | static void initText(ShellText *p){ |
| 944 | memset(p, 0, sizeof(*p)); |
| 945 | } |
| 946 | static void freeText(ShellText *p){ |
| 947 | free(p->z); |
| 948 | initText(p); |
no outgoing calls
no test coverage detected