| 436 | static char object_array_slopbuf[1]; |
| 437 | |
| 438 | void object_array_init(struct object_array *array) |
| 439 | { |
| 440 | struct object_array blank = OBJECT_ARRAY_INIT; |
| 441 | memcpy(array, &blank, sizeof(*array)); |
| 442 | } |
| 443 | |
| 444 | void add_object_array_with_path(struct object *obj, const char *name, |
| 445 | struct object_array *array, |
no outgoing calls
no test coverage detected