dos_compilers/Microsoft C v3/INC/SEARCH.H
2024-07-04 11:11:27 -07:00

25 lines
540 B
C

/*
* search.h
*
* This include file contains the function declarations for the sorting and
* searching routines
*
* Copyright (C) Microsoft Corporation, 1984
*
*/
/* function declarations for those who want strong type checking
* on arguments to library function calls
*/
#ifdef LINT_ARGS /* arg. checking enabled */
char *bsearch(char *, char *, unsigned int, unsigned int, int (*)());
void qsort(char *, unsigned int, unsigned int, int (*)());
#else
extern char *bsearch();
#endif /* LINT_ARGS */