* Insert a C string, at a given position, into a Dstr. */
| 296 | * Insert a C string, at a given position, into a Dstr. |
| 297 | */ |
| 298 | void dStr_insert (Dstr *ds, int pos_0, const char *s) |
| 299 | { |
| 300 | if (s) |
| 301 | dStr_insert_l(ds, pos_0, s, strlen(s)); |
| 302 | } |
| 303 | |
| 304 | /** |
| 305 | * Append a C string to a Dstr (providing length). |
nothing calls this directly
no test coverage detected