Wed, 10 Oct 2012 09:32:06 +0200
discarded memprintf / memscanf
Reason: memscanf has no chance to get the amount of bytes read
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 | ||
54 | 23 | #endif /* STRING_TESTS_H */ |
39 | 24 |