| 32 | #include "../../src/libc/sk_string.c" |
| 33 | |
| 34 | TEST(SkStringTest, Memcpy) { |
| 35 | char src[] = "hello"; |
| 36 | char dest[10]; |
| 37 | memcpy(dest, src, 6); |
| 38 | EXPECT_STREQ(dest, "hello"); |
| 39 | } |
| 40 | |
| 41 | TEST(SkStringTest, Memmove) { |
| 42 | char str[] = "memory move test"; |
nothing calls this directly
no test coverage detected