Fri, 05 Oct 2012 14:06:40 +0200
added rehashing to maps by using clone function
39 | 1 | /* |
2 | * | |
3 | */ | |
4 | ||
5 | #ifndef STRING_TESTS_H | |
6 | #define STRING_TESTS_H | |
7 | ||
8 | #include "ucx/test.h" | |
9 | #include "ucx/string.h" | |
10 | ||
11 | #ifdef __cplusplus | |
12 | extern "C" { | |
13 | #endif | |
14 | ||
47
22fb97e9f58a
sstrncat uses memcpy
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
39
diff
changeset
|
15 | UCX_TEST_DECLARE(test_sstr) |
22fb97e9f58a
sstrncat uses memcpy
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
39
diff
changeset
|
16 | UCX_TEST_DECLARE(test_sstr_len_cat) |
39 | 17 | UCX_TEST_DECLARE(test_sstrsplit) |
18 | ||
19 | #ifdef __cplusplus | |
20 | } | |
21 | #endif | |
22 | ||
23 | #endif /* MPOOL_TESTS_H */ | |
24 |