lfind
-
"Search" example in CComputer/linux 2008. 8. 18. 19:34
header file : #include reference : http://www.gnu.org/software/libc/manual/html_node/Searching-and-Sorting.html#Searching-and-Sortinghttp://www.codecogs.com/reference/c/search.h/ Defining how to compare two int objects: int compare_ints (const void *a, const void *b) { const int *da = (const int *) a; const int *db = (const int *) b; return (*da > *db) - (*da < *db); } return : negative if a “le..