mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
Move some ascii_foo functions to libcompat
This commit is contained in:
parent
ebdcac8089
commit
20af3fea15
6 changed files with 84 additions and 74 deletions
|
@ -1,3 +1,8 @@
|
|||
2007-04-16 David Shaw <dshaw@jabberwocky.com>
|
||||
|
||||
* util.h (ascii_toupper, ascii_tolower, ascii_strcasecmp,
|
||||
ascii_strncasecmp): Move functions to compat.h.
|
||||
|
||||
2006-12-11 Werner Koch <wk@g10code.com>
|
||||
|
||||
* mpi.h (mpi_is_neg, mpi_get_nlimbs): Replaced macros by function
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue