1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Regex library is switched to use new ctype tools

to allow usage of many character sets at a time.
This commit is contained in:
bar@gw.udmsearch.izhnet.ru
2002-03-06 20:04:13 +04:00
parent 576c9b8167
commit 2eed406550
13 changed files with 126 additions and 100 deletions

View File

@@ -140,6 +140,6 @@ struct re_guts {
/* misc utilities */
#undef OUT /* May be defined in windows */
#define OUT (CHAR_MAX+1) /* a non-character value */
#define ISWORD(c) (isalnum(c) || (c) == '_')
#define ISWORD(s,c) (my_isalnum(s,c) || (c) == '_')
#endif /* __regex2_h__ */