1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

* util.h: Add the atoi_* and xtoi_* suite of macros from 1.9.

* dynload.h: New.  Taken from 1.9.
This commit is contained in:
Werner Koch 2003-09-28 13:42:18 +00:00
parent e369270a65
commit edb5762c5f
6 changed files with 90 additions and 0 deletions

View file

@ -24,8 +24,11 @@ const char *tty_get_ttyname (void);
int tty_batchmode( int onoff );
#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 5 )
void tty_printf (const char *fmt, ... ) __attribute__ ((format (printf,1,2)));
void tty_fprintf (FILE *fp, const char *fmt, ... )
__attribute__ ((format (printf,2,3)));
#else
void tty_printf (const char *fmt, ... );
void tty_fprintf (FILE *fp, const char *fmt, ... );
#endif
void tty_print_string( byte *p, size_t n );
void tty_print_utf8_string( byte *p, size_t n );