diff options
Diffstat (limited to 'src/common/db.c')
-rw-r--r-- | src/common/db.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/common/db.c b/src/common/db.c index 87b6e7c4f..f25afb5c3 100644 --- a/src/common/db.c +++ b/src/common/db.c @@ -75,6 +75,10 @@ #include "../common/showmsg.h" #include "../common/ers.h" +//TODO: get rid of this +#define LOWER(c) (((c)>='A' && (c) <= 'Z') ? ((c)+('a'-'A')) : (c)) +#define UPPER(c) (((c)>='a' && (c) <= 'z') ? ((c)+('A'-'a')) : (c)) + /*****************************************************************************\ * (1) Private typedefs, enums, structures, defines and global variables of * * the database system. * |