String-Skip-Space!

(string-skip-space! string) -> null

Destructively strips whitespace from the head of the given string.

Example:

>> a
:: "   This is a test."
>> (string-skip-space! a)
:: null
>> a
:: "This is a test."
>>