X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Ftrim.h;h=0bbb2ffa66e6a5c0f7ab356530bc6652cebd915a;hb=e901c96e0151d00195c60e9efb1a7668c4b5e3bd;hp=ae5708b58a6dd05c3a2471fb4e523b7e995c7cf8;hpb=57fdfd3f8ec62b105c53bcdf6f127c35c7fe7391;p=gnulib.git diff --git a/lib/trim.h b/lib/trim.h index ae5708b58..0bbb2ffa6 100644 --- a/lib/trim.h +++ b/lib/trim.h @@ -1,5 +1,5 @@ /* Removes leading and/or trailing whitespaces - Copyright (C) 2006 Free Software Foundation, Inc. + Copyright (C) 2006, 2009-2011 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -22,13 +22,12 @@ #define TRIM_BOTH 2 /* Removes trailing and leading whitespaces. */ -#define trim(s) trim2((s), TRIM_BOTH) +#define trim(s) trim2(s, TRIM_BOTH) /* Removes trailing whitespaces. */ -#define trim_trailing(s) trim2((s), TRIM_TRAILING) +#define trim_trailing(s) trim2(s, TRIM_TRAILING) /* Removes leading whitespaces. */ -#define trim_leading(s) trim2((s), TRIM_LEADING) - -char *trim2(const char *, int); +#define trim_leading(s) trim2(s, TRIM_LEADING) +char *trim2 (const char *, int);