diff options
author | Werner Koch <[email protected]> | 1998-04-30 14:06:01 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 1998-04-30 14:06:01 +0000 |
commit | 448f8e53fe3e5d5ac54fe7151e512acbb6114ad5 (patch) | |
tree | 5cb5878aaff2738558b1355f5f17b48d300cb145 /include/util.h | |
parent | NEw (diff) | |
download | gnupg-448f8e53fe3e5d5ac54fe7151e512acbb6114ad5.tar.gz gnupg-448f8e53fe3e5d5ac54fe7151e512acbb6114ad5.zip |
*** empty log message ***
Diffstat (limited to '')
-rw-r--r-- | include/util.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/util.h b/include/util.h index 3f39656f3..c56cc1991 100644 --- a/include/util.h +++ b/include/util.h @@ -107,6 +107,8 @@ const char *print_fname_stdout( const char *s ); /*-- miscutil.c --*/ u32 make_timestamp(void); +u32 add_days_to_timestamp( u32 stamp, u16 days ); +const char *strtimestamp( u32 stamp ); void print_string( FILE *fp, byte *p, size_t n, int delim ); int answer_is_yes( const char *s ); @@ -116,6 +118,7 @@ void free_strlist( STRLIST sl ); void add_to_strlist( STRLIST *list, const char *string ); STRLIST strlist_prev( STRLIST head, STRLIST node ); STRLIST strlist_last( STRLIST node ); +int memicmp( const char *a, const char *b, size_t n ); const char *memistr( const char *buf, size_t buflen, const char *sub ); char *mem2str( char *, const void *, size_t); char *trim_spaces( char *string ); |