| 674 | */ |
| 675 | |
| 676 | cups_array_t * /* O - Array */ |
| 677 | cupsArrayNew(cups_array_func_t f, /* I - Comparison function or @code NULL@ for an unsorted array */ |
| 678 | void *d) /* I - User data pointer or @code NULL@ */ |
| 679 | { |
| 680 | return (cupsArrayNew3(f, d, 0, 0, 0, 0)); |
| 681 | } |
| 682 | |
| 683 | |
| 684 | /* |