diff options
Diffstat (limited to 'lib/mlibc/tests/ansi/strxfrm.c')
-rw-r--r-- | lib/mlibc/tests/ansi/strxfrm.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/mlibc/tests/ansi/strxfrm.c b/lib/mlibc/tests/ansi/strxfrm.c new file mode 100644 index 0000000..07a4082 --- /dev/null +++ b/lib/mlibc/tests/ansi/strxfrm.c @@ -0,0 +1,14 @@ +#include <assert.h> +#include <locale.h> +#include <string.h> + +int main() { + setlocale(LC_ALL, "C"); + + const char *buf = "cbtteststring"; + char dest[14]; + size_t ret = strxfrm(dest, buf, strlen(buf) + 1); + assert(ret == 13); + int cmp = strncmp(dest, buf, 13); + assert(!cmp); +} |