diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 5 | ||||
-rw-r--r-- | include/compat.h | 4 | ||||
-rw-r--r-- | include/util.h | 4 |
3 files changed, 9 insertions, 4 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 206d43692..ae90e47ec 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,8 @@ +2007-04-16 David Shaw <[email protected]> + + * util.h (ascii_toupper, ascii_tolower, ascii_strcasecmp, + ascii_strncasecmp): Move functions to compat.h. + 2006-12-11 Werner Koch <[email protected]> * mpi.h (mpi_is_neg, mpi_get_nlimbs): Replaced macros by function diff --git a/include/compat.h b/include/compat.h index f971ffaf7..5ed139678 100644 --- a/include/compat.h +++ b/include/compat.h @@ -6,6 +6,10 @@ #define ascii_isspace(a) ((a)==' ' || (a)=='\n' || (a)=='\r' || (a)=='\t') int hextobyte( const char *s ); +int ascii_toupper (int c); +int ascii_tolower (int c); +int ascii_strcasecmp( const char *a, const char *b ); +int ascii_strncasecmp( const char *a, const char *b, size_t n); #ifndef HAVE_STRSEP char *strsep (char **stringp, const char *delim); diff --git a/include/util.h b/include/util.h index 265bb02c2..6269bd562 100644 --- a/include/util.h +++ b/include/util.h @@ -194,10 +194,6 @@ int check_utf8_string( const char *string ); int ascii_isupper (int c); 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_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 |