diff options
Diffstat (limited to 'src/common/libc')
-rw-r--r-- | src/common/libc/bam.lua | 3 | ||||
-rw-r--r-- | src/common/libc/ctype.c | 3 | ||||
-rw-r--r-- | src/common/libc/string.c | 5 |
3 files changed, 8 insertions, 3 deletions
diff --git a/src/common/libc/bam.lua b/src/common/libc/bam.lua deleted file mode 100644 index cee2ec4..0000000 --- a/src/common/libc/bam.lua +++ /dev/null @@ -1,3 +0,0 @@ -local source = Collect('src/common/libc/*.c') - -common_libc = Compile(common_settings, source) diff --git a/src/common/libc/ctype.c b/src/common/libc/ctype.c new file mode 100644 index 0000000..56daa6b --- /dev/null +++ b/src/common/libc/ctype.c @@ -0,0 +1,3 @@ +#include <ctype.h> + +// TODO diff --git a/src/common/libc/string.c b/src/common/libc/string.c index d2a5f2f..90cea34 100644 --- a/src/common/libc/string.c +++ b/src/common/libc/string.c @@ -144,4 +144,9 @@ char *strndup(const char* str, size_t count) { return ret; } +int strcoll(const char *s1, const char *s2) { + // TODO locale handling + return strcmp(s1, s2); +} + /* vim: set ts=4 sw=4 tw=0 noet :*/ |