diff options
author | David Shaw <[email protected]> | 2004-02-21 22:13:39 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2004-02-21 22:13:39 +0000 |
commit | 9afea908250a488462e4921aad4124cd99a084ed (patch) | |
tree | 15fc927a7865390e8184de3646c652e277ff52f3 | |
parent | * miscutil.c (hextobyte): Moved here from g10/misc.c so I can use it in (diff) | |
download | gnupg-9afea908250a488462e4921aad4124cd99a084ed.tar.gz gnupg-9afea908250a488462e4921aad4124cd99a084ed.zip |
* util.h: Prototype for hextobyte().
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | include/util.h | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 9b3133f9b..f0754d074 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2004-02-21 David Shaw <[email protected]> + + * util.h: Prototype for hextobyte(). + 2004-01-16 David Shaw <[email protected]> * cipher.h: Remove the old CIPHER_ALGO_RINJDAEL values. diff --git a/include/util.h b/include/util.h index 4e9c07681..c8100e83a 100644 --- a/include/util.h +++ b/include/util.h @@ -159,8 +159,7 @@ char *make_filename( const char *first_part, ... ); int compare_filenames( const char *a, const char *b ); const char *print_fname_stdin( const char *s ); const char *print_fname_stdout( const char *s ); -int is_file_compressed(const char *s, int *r_status); - +int is_file_compressed(const char *s, int *r_status); /*-- miscutil.c --*/ u32 make_timestamp(void); @@ -179,6 +178,7 @@ int answer_is_yes( const char *s ); int answer_is_yes_no_quit( const char *s ); int answer_is_okay_cancel (const char *s, int def_answer); int match_multistr(const char *multistr,const char *match); +int hextobyte( const char *s ); /*-- strgutil.c --*/ void free_strlist( STRLIST sl ); |