diff options
author | Stef Walter <stef@memberwebs.com> | 2006-04-04 19:42:19 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2006-04-04 19:42:19 +0000 |
commit | 1fe43cb40fb54412528b7538718a457d2167c603 (patch) | |
tree | 7eef0a4db45b1dea94d6820273b859db0cab45dd /common/compat.c | |
parent | 6972f27080656ad3d2601fcb921c9a2389ac08a5 (diff) |
Add support for simpler create options.
Diffstat (limited to 'common/compat.c')
-rw-r--r-- | common/compat.c | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/common/compat.c b/common/compat.c index 67d3997..c6138d0 100644 --- a/common/compat.c +++ b/common/compat.c @@ -232,6 +232,7 @@ atexitv(voidfunc func, void* data) #endif /* HAVE_ATEXITV */ + #ifndef HAVE_XCALLOC void* @@ -244,3 +245,31 @@ xcalloc(size_t size) } #endif /* HAVE_XCALLOC */ + + +#ifndef HAVE_STRLWR + +void strlwr(char* data) +{ + while(*data) + { + *data = tolower(*data); + data++; + } +} + +#endif /* HAVE_STRLWR */ + + +#ifndef HAVE_STRUPR + +void strupr(char* data) +{ + while(*data) + { + *data = toupper(*data); + data++; + } +} + +#endif /* HAVE_STRUPR */ |