1 /* vi: set sw=4 ts=4: */
5 * Copyright (C) many different people.
6 * If you wrote this, please acknowledge your work.
8 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
13 void FAST_FUNC trim(char *s)
15 size_t len = strlen(s);
18 /* trim trailing whitespace */
19 while (len && isspace(s[len-1]))
22 /* trim leading whitespace */
24 lws = strspn(s, " \n\r\t\v");
27 memmove(s, s + lws, len);