Added prototype.

This commit is contained in:
Werner Koch 2002-09-10 08:39:02 +00:00
parent 92f8a5d12a
commit 1405471461
1 changed files with 2 additions and 1 deletions

View File

@ -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);