2001-03-16 22:47:14 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Utility routines.
|
|
|
|
*
|
2004-03-15 08:29:22 +00:00
|
|
|
* Copyright (C) many different people.
|
2003-07-14 21:21:08 +00:00
|
|
|
* If you wrote this, please acknowledge your work.
|
2001-03-16 22:47:14 +00:00
|
|
|
*
|
2006-05-19 19:29:19 +00:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2001-03-16 22:47:14 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include "libbb.h"
|
|
|
|
|
|
|
|
|
|
|
|
void trim(char *s)
|
|
|
|
{
|
2005-09-01 10:23:57 +00:00
|
|
|
size_t len = strlen(s);
|
|
|
|
size_t lws;
|
2001-04-23 17:04:41 +00:00
|
|
|
|
2001-03-16 22:47:14 +00:00
|
|
|
/* trim trailing whitespace */
|
2005-09-01 10:23:57 +00:00
|
|
|
while (len && isspace(s[len-1])) --len;
|
2001-03-16 22:47:14 +00:00
|
|
|
|
|
|
|
/* trim leading whitespace */
|
2005-09-01 10:23:57 +00:00
|
|
|
if(len) {
|
|
|
|
lws = strspn(s, " \n\r\t\v");
|
|
|
|
memmove(s, s + lws, len -= lws);
|
|
|
|
}
|
|
|
|
s[len] = 0;
|
2001-03-16 22:47:14 +00:00
|
|
|
}
|