diff options
author | Stef Walter <stef@memberwebs.com> | 2004-08-25 22:46:35 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2004-08-25 22:46:35 +0000 |
commit | 3ab559f02970d9f7e8c73a3854f405cab43158d1 (patch) | |
tree | 5f6c5228e406395d0559bf7b2229a836e5a65d8d /common/stringx.h | |
parent | 89328280b6af9f51e7b9e5c72971e083694db91e (diff) |
Added support for ESMTP
Diffstat (limited to 'common/stringx.h')
-rw-r--r-- | common/stringx.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/common/stringx.h b/common/stringx.h index 8a39c7e..8e6f2f4 100644 --- a/common/stringx.h +++ b/common/stringx.h @@ -50,6 +50,10 @@ int is_first_word(const char* line, const char* word, int len); int is_last_word(const char* line, const char* word, int len); int is_blank_line(const char* line); +char* trim_start(const char* data); +char* trim_end(char* data); +char* trim_space(char* data); + void plock(); void punlock(); |