trim.c 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * Utility routines.
  4. *
  5. * Copyright (C) many different people.
  6. * If you wrote this, please acknowledge your work.
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful, but
  14. * WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
  21. * USA
  22. */
  23. #include <stdio.h>
  24. #include <string.h>
  25. #include <ctype.h>
  26. #include "libbb.h"
  27. void trim(char *s)
  28. {
  29. size_t len = strlen(s);
  30. size_t lws;
  31. /* trim trailing whitespace */
  32. while (len && isspace(s[len-1])) --len;
  33. /* trim leading whitespace */
  34. if(len) {
  35. lws = strspn(s, " \n\r\t\v");
  36. memmove(s, s + lws, len -= lws);
  37. }
  38. s[len] = 0;
  39. }
  40. /* END CODE */
  41. /*
  42. Local Variables:
  43. c-file-style: "linux"
  44. c-basic-offset: 4
  45. tab-width: 4
  46. End:
  47. */