|
|
1.1 root 1: /***
2: *search.h - declarations for searcing/sorting routines
3: *
4: * Copyright (c) 1985-1990, Microsoft Corporation. All rights reserved.
5: *
6: *Purpose:
7: * This file contains the declarations for the sorting and
8: * searching routines.
9: * [System V]
10: *
11: ****/
12:
13:
14: #ifndef _SIZE_T_DEFINED
15: typedef unsigned int size_t;
16: #define _SIZE_T_DEFINED
17: #endif
18:
19:
20: /* function prototypes */
21:
22: void * _cdecl lsearch(const void *, void *, unsigned int *, unsigned int,
23: int (_cdecl *)(const void *, const void *));
24: void * _cdecl lfind(const void *, const void *, unsigned int *, unsigned int,
25: int (_cdecl *)(const void *, const void *));
26: void * _cdecl bsearch(const void *, const void *, size_t, size_t,
27: int (_cdecl *)(const void *, const void *));
28: void _cdecl qsort(void *, size_t, size_t, int (_cdecl *)(const void *,
29: const void *));
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.