| 207 | typedef int (*CMP_FUNC)(const Elem *el1, const Elem *el2); |
| 208 | |
| 209 | void sort(CMP_FUNC cmp_func) |
| 210 | { |
| 211 | my_qsort(array.buffer, array.elements, sizeof(Elem), (qsort_cmp)cmp_func); |
| 212 | } |
| 213 | }; |
| 214 | |
| 215 | #endif /* SQL_ARRAY_INCLUDED */ |
nothing calls this directly
no test coverage detected