diff options
author | Werner Koch <wk@gnupg.org> | 2002-09-10 10:39:02 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2002-09-10 10:39:02 +0200 |
commit | 1405471461bbe55b1e3af5aafd76b6f942c2cf05 (patch) | |
tree | 4ca95d979b65a75d9ce0d3d0b01af2b094fa8950 | |
parent | * gpgkeys_hkp.c (send_key, get_key, search_key): Check return (diff) | |
download | gnupg2-1405471461bbe55b1e3af5aafd76b6f942c2cf05.tar.xz gnupg2-1405471461bbe55b1e3af5aafd76b6f942c2cf05.zip |
Added prototype.
-rw-r--r-- | include/util.h | 3 |
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); |