str_remove(STRING*)

Removes a string created with str_create.

Parameters:

STRING* - string pointer.

Speed:

Medium

Examples:

sTest = str_create("Test!"); // create a string 
...
str_remove(sTest); // remove the string

See also:

STRING, str_cpy, str_create