summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2002-09-10 10:39:02 +0200
committerWerner Koch <wk@gnupg.org>2002-09-10 10:39:02 +0200
commit1405471461bbe55b1e3af5aafd76b6f942c2cf05 (patch)
tree4ca95d979b65a75d9ce0d3d0b01af2b094fa8950
parent* gpgkeys_hkp.c (send_key, get_key, search_key): Check return (diff)
downloadgnupg2-1405471461bbe55b1e3af5aafd76b6f942c2cf05.tar.xz
gnupg2-1405471461bbe55b1e3af5aafd76b6f942c2cf05.zip
Added prototype.
-rw-r--r--include/util.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/util.h b/include/util.h
index 82c8dc725..ae299ef5a 100644
--- a/include/util.h
+++ b/include/util.h
@@ -204,7 +204,8 @@ int ascii_islower (int c);
int ascii_toupper (int c);
int ascii_tolower (int c);
int ascii_strcasecmp( const char *a, const char *b );
-int ascii_memcasecmp( const char *a, const char *b, size_t n );
+int ascii_strncasecmp( const char *a, const char *b, size_t n);
+int ascii_memcasecmp( const char *a, const char *b, size_t n);
#ifndef HAVE_STPCPY
char *stpcpy(char *a,const char *b);