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

*** empty log message ***

This commit is contained in:
Werner Koch 2002-01-10 19:46:20 +00:00
parent 489207db37
commit 8bad9e344b
4 changed files with 72 additions and 2 deletions

View file

@ -53,9 +53,11 @@ int map_ksba_err (int err);
int map_gcry_err (int err);
int map_kbx_err (int err);
int map_assuan_err (int err);
int map_to_assuan_status (int rc);
/* some macros to replace ctype ones and avoid locale problems */
#define spacep(p) (*(p) == ' ' || *(p) == '\t')
#define digitp(p) (*(p) >= '0' && *(p) <= '9')
#define hexdigitp(a) (digitp (a) \
|| (*(a) >= 'A' && *(a) <= 'F') \
@ -73,3 +75,9 @@ int map_assuan_err (int err);
#endif /*GNUPG_COMMON_UTIL_H*/