diff options
author | Werner Koch <[email protected]> | 2013-02-21 19:25:12 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2013-02-22 08:29:41 +0000 |
commit | 2838385e76c8c7108bc949d5a1d1c947051bd5be (patch) | |
tree | ad1bb4f6aef09c7b0302b44c68cda14eb2d21e67 /common/stringhelp.h | |
parent | Remove build hacks for FreeBSD. (diff) | |
download | gnupg-2838385e76c8c7108bc949d5a1d1c947051bd5be.tar.gz gnupg-2838385e76c8c7108bc949d5a1d1c947051bd5be.zip |
common: Add func has_leading_keyword.
* common/stringhelp.c (has_leading_keyword): New.
Diffstat (limited to '')
-rw-r--r-- | common/stringhelp.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common/stringhelp.h b/common/stringhelp.h index 60ba12b8c..c1f7ea12d 100644 --- a/common/stringhelp.h +++ b/common/stringhelp.h @@ -34,6 +34,8 @@ #include "types.h" +char *has_leading_keyword (const char *string, const char *keyword); + const char *memistr (const void *buf, size_t buflen, const char *sub); char *mem2str( char *, const void *, size_t); char *trim_spaces( char *string ); |