| 232 | } |
| 233 | |
| 234 | int |
| 235 | main (int argc UNUSED, |
| 236 | char **argv UNUSED) |
| 237 | { |
| 238 | setvbuf (stdout, NULL, _IONBF, 0); |
| 239 | test_n_elements (); |
| 240 | test_strconcat (); |
| 241 | test_strconcat3 (); |
| 242 | test_has_prefix (); |
| 243 | test_has_path_prefix (); |
| 244 | test_string_builder (); |
| 245 | printf ("1..%u\n", test_number); |
| 246 | return 0; |
| 247 | } |
nothing calls this directly
no test coverage detected