| 89 | |
| 90 | |
| 91 | my_bool dynstr_append(DYNAMIC_STRING *str, const char *append) |
| 92 | { |
| 93 | return dynstr_append_mem(str,append,(uint) strlen(append)); |
| 94 | } |
| 95 | |
| 96 | |
| 97 | my_bool dynstr_append_mem(DYNAMIC_STRING *str, const char *append, |
nothing calls this directly
no test coverage detected