Remove character from head and tail of the string.
char *str = strdup(" \"hello world\" "); qStrTrim(str); // to remove white spaces qStrUnchar(str, '"', '"'); // to unquote
Definition at line 99 of file qString.c.