| 5 | #include <iostream> |
| 6 | |
| 7 | static void test_append(acl::string& buf) |
| 8 | { |
| 9 | for (size_t i = 0; i < 50; i++) { |
| 10 | buf.format_append("%zd->hello world!\r\n", i); |
| 11 | } |
| 12 | } |
| 13 | |
| 14 | static void test_mmap_write(int max, size_t off) |
| 15 | { |
no outgoing calls
no test coverage detected
searching dependent graphs…