Slight style tweaks to the bsearch changest.

This commit is contained in:
Eric Haszlakiewicz
2015-03-04 03:10:10 +00:00
parent a500c1f0b5
commit 484ca368f0
4 changed files with 12 additions and 14 deletions

View File

@@ -49,9 +49,9 @@ array_list_length(struct array_list *al);
extern void
array_list_sort(struct array_list *arr, int(*compar)(const void *, const void *));
extern void* array_list_bsearch( const void **key,
extern void* array_list_bsearch(const void **key,
struct array_list *arr,
int (*sort_fn)(const void *, const void *) );
int (*sort_fn)(const void *, const void *));
#ifdef __cplusplus