#ifndef BSEARCH_INSERT_POS_H
#define BSEARCH_INSERT_POS_H
/* Binary search template - getdata must be the name of a pure function
or a function-like macro that takes the two obvious parameters. */
\
\
else { \
return TRUE; \
} \
} \
return FALSE
/* If key is found, returns TRUE and sets idx_r to the position where the key
was found. If key isn't found, returns FALSE and sets idx_r to the position
where the key should be inserted. */
unsigned int *idx_r);
int (*cmp)(const void *, const void *),
unsigned int *idx_r);
#endif