diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2013-03-26 14:54:31 +0100 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2013-03-26 14:54:31 +0100 |
commit | cfe9dc32900b537986c6765972307fd9e57ece0b (patch) | |
tree | d5ad7114da5ebb0c4620b3a2711e045a9268a9fb /apt-pkg/contrib/strutl.cc | |
parent | 55971004215609a02ca19c59bd058da20729ba11 (diff) | |
parent | cb32348956441e33733e6bd8c2c572f19600dc25 (diff) |
merge stuff from donkult
Diffstat (limited to 'apt-pkg/contrib/strutl.cc')
-rw-r--r-- | apt-pkg/contrib/strutl.cc | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/apt-pkg/contrib/strutl.cc b/apt-pkg/contrib/strutl.cc index ca096d736..9726138a0 100644 --- a/apt-pkg/contrib/strutl.cc +++ b/apt-pkg/contrib/strutl.cc @@ -117,7 +117,13 @@ char *_strstrip(char *String) if (*String == 0) return String; - + return _strrstrip(String); +} + /*}}}*/ +// strrstrip - Remove white space from the back of a string /*{{{*/ +// --------------------------------------------------------------------- +char *_strrstrip(char *String) +{ char *End = String + strlen(String) - 1; for (;End != String - 1 && (*End == ' ' || *End == '\t' || *End == '\n' || *End == '\r'); End--); |