blob: c79de8e8367bdea5cf8b37ed3d307b4445a7288c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#include <assert.h>
#include <string.h>
int main() {
char test[19] = "Hello mlibc World!";
char *alloca_ed = strdupa(test);
assert(!strcmp(test, alloca_ed));
char *trimmed = strndupa(test, 5);
assert(!strcmp("Hello", trimmed));
}
|