| 121 | |
| 122 | |
| 123 | my_bool dynstr_trunc(DYNAMIC_STRING *str, size_t n) |
| 124 | { |
| 125 | str->length-=n; |
| 126 | str->str[str->length]= '\0'; |
| 127 | return FALSE; |
| 128 | } |
| 129 | |
| 130 | /* |
| 131 | Concatenates any number of strings, escapes any OS quote in the result then |
no outgoing calls