Skip to content
Snippets Groups Projects
Commit 23976020 authored by Teodor Sigaev's avatar Teodor Sigaev
Browse files

Correct type for isalnum

parent 1469af86
No related branches found
No related tags found
No related merge requests found
...@@ -87,7 +87,7 @@ typedef struct ...@@ -87,7 +87,7 @@ typedef struct
#ifndef abs #ifndef abs
#define abs(a) ((a) < (0) ? -(a) : (a)) #define abs(a) ((a) < (0) ? -(a) : (a))
#endif #endif
#define ISALNUM(x) ( isalnum((unsigned int)(x)) || (x) == '_' ) #define ISALNUM(x) ( isalnum((unsigned char)(x)) || (x) == '_' )
/* full text query */ /* full text query */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment