commit | 32750621508da5e68f53bf14f944ad524627eb50 | [log] [tgz] |
---|---|---|
author | Shinichiro Hamaji <[email protected]> | Wed Jun 17 14:57:33 2015 +0900 |
committer | Shinichiro Hamaji <[email protected]> | Thu Jun 18 11:25:44 2015 +0900 |
tree | 2a76be999fa68accf30fb6fb7901d9e8fa5f3a7e | |
parent | ca66857f4e526179390b3a67e990538a4bbb2a16 [diff] [blame] |
[C++] Replace StripXXXSpaces by TrimXXXSpace
diff --git a/strutil.h b/strutil.h index 600463c..b7d1147 100644 --- a/strutil.h +++ b/strutil.h
@@ -74,4 +74,8 @@ string NoLineBreak(const string& s); +StringPiece TrimLeftSpace(StringPiece s); +StringPiece TrimRightSpace(StringPiece s); +StringPiece TrimSpace(StringPiece s); + #endif // STRUTIL_H_