String-Append!

(string-append! string1 string2) -> null

Destructively adds the given string2 to string1, at the tail.

Example:
Assuming buffer 'a

>> (define a "This is a ")
:: "This is a "
>> (string-append! a "test.")
:: null
>> a
:: "This is a test."