| 388 | |
| 389 | template<class ST> |
| 390 | void sort(int (__cdecl *cf)(ST *, ST *), int i = 0, int n = -1) |
| 391 | { |
| 392 | qsort(&buf[i], n<0 ? ulen : n, sizeof(T), (int (__cdecl *)(const void *,const void *))cf); |
| 393 | } |
| 394 | |
| 395 | template<class ST> |
| 396 | T *search(T *key, int (__cdecl *cf)(ST *, ST *), int i = 0, int n = -1) |
no outgoing calls
no test coverage detected