mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
r6978@Kushana: nickm | 2006-07-31 13:16:14 -0400
Add isupper and islower wrappers to compat.h svn:r6957
This commit is contained in:
parent
fd0bafb0de
commit
3843b1b3d0
@ -130,6 +130,8 @@ const void *tor_memmem(const void *haystack, size_t hlen, const void *needle,
|
||||
#define TOR_ISXDIGIT(c) isxdigit((int)(unsigned char)(c))
|
||||
#define TOR_ISDIGIT(c) isdigit((int)(unsigned char)(c))
|
||||
#define TOR_ISPRINT(c) isprint((int)(unsigned char)(c))
|
||||
#define TOR_ISLOWER(c) islower((int)(unsigned char)(c))
|
||||
#define TOR_ISUPPER(c) isupper((int)(unsigned char)(c))
|
||||
|
||||
#ifdef MS_WINDOWS
|
||||
#define _SHORT_FILE_ (tor_fix_source_file(__FILE__))
|
||||
|
Loading…
Reference in New Issue
Block a user