| 203 | } |
| 204 | |
| 205 | void test_strvec__remove_at_head(void) |
| 206 | { |
| 207 | struct strvec vec = STRVEC_INIT; |
| 208 | |
| 209 | strvec_pushl(&vec, "foo", "bar", "baz", NULL); |
| 210 | strvec_remove(&vec, 0); |
| 211 | check_strvec(&vec, "bar", "baz", NULL); |
| 212 | strvec_clear(&vec); |
| 213 | } |
| 214 | |
| 215 | void test_strvec__remove_at_tail(void) |
| 216 | { |
nothing calls this directly
no test coverage detected