| 537 | } |
| 538 | |
| 539 | struct attr_check *attr_check_alloc(void) |
| 540 | { |
| 541 | struct attr_check *c = xcalloc(1, sizeof(struct attr_check)); |
| 542 | |
| 543 | /* save pointer to the check struct */ |
| 544 | check_vector_add(c); |
| 545 | |
| 546 | return c; |
| 547 | } |
| 548 | |
| 549 | struct attr_check *attr_check_initl(const char *one, ...) |
| 550 | { |