diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 6 | ||||
-rw-r--r-- | include/compat.h | 6 | ||||
-rw-r--r-- | include/util.h | 3 |
3 files changed, 13 insertions, 2 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index eaee0ddd3..0d72a879a 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,9 @@ +2006-09-28 David Shaw <[email protected]> + + * compat.h: New, used for libcompat.a functions. + + * util.h: Includes compat.h. + 2006-04-20 David Shaw <[email protected]> * cipher.h: Add dsa2_generate(); diff --git a/include/compat.h b/include/compat.h new file mode 100644 index 000000000..c1f900a9e --- /dev/null +++ b/include/compat.h @@ -0,0 +1,6 @@ +#ifndef _COMPAT_H_ +#define _COMPAT_H_ + +int hextobyte( const char *s ); + +#endif /* !_COMPAT_H_ */ diff --git a/include/util.h b/include/util.h index ee25be12e..559d0b9a0 100644 --- a/include/util.h +++ b/include/util.h @@ -30,7 +30,7 @@ #include "errors.h" #include "types.h" #include "mpi.h" - +#include "compat.h" typedef struct { int *argc; /* pointer to argc (value subject to change) */ @@ -164,7 +164,6 @@ 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 ); |