blob: 07a408299934d3973eaa553da10699fb875ee714 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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);
}
|