home *** CD-ROM | disk | FTP | other *** search
- #if (defined(__IBMC__) || defined(__IBMCPP__))
- #pragma info( none )
- #ifndef __CHKHDR__
- #pragma info( none )
- #endif
- #pragma info( restore )
- #endif
-
- #ifndef __search_h
- #define __search_h
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- #ifndef _LNK_CONV
- #ifdef _M_I386
- #define _LNK_CONV _Optlink
- #else
- #define _LNK_CONV
- #endif
- #endif
-
- #ifndef _IMPORT
- #ifdef __IMPORTLIB__
- #define _IMPORT _Import
- #else
- #define _IMPORT
- #endif
- #endif
-
- /********************************************************************/
- /* <search.h> header file */
- /* */
- /* VisualAge for C++ for Windows, Version 3.5 */
- /* Licensed Material - Property of IBM */
- /* */
- /* 5801-ARR and Other Materials */
- /* */
- /* (c) Copyright IBM Corp 1991, 1996. All rights reserved. */
- /* */
- /********************************************************************/
-
- #if defined(__EXTENDED__)
-
- #ifndef __size_t
- #define __size_t
- typedef unsigned int size_t;
- #endif
-
- /* function prototypes */
-
- char * _IMPORT _LNK_CONV _lsearch( const char *, const char *, unsigned int *,
- unsigned int, int ( * _LNK_CONV __compare )( const void *, const void * ) );
- char * _IMPORT _LNK_CONV _lfind( const char *, const char *, unsigned int *,
- unsigned int, int ( * _LNK_CONV __compare )( const void *, const void * ) );
-
- char * _IMPORT _LNK_CONV lsearch( const char *, const char *, unsigned int *,
- unsigned int, int ( * _LNK_CONV __compare )( const void *, const void * ) );
- char * _IMPORT _LNK_CONV lfind( const char *, const char *, unsigned int *,
- unsigned int, int ( * _LNK_CONV __compare )( const void *, const void * ) );
-
- #if (defined(__IBMC__) || defined(__IBMCPP__))
- #ifdef __OS2__
- #pragma map( lsearch, "_lsearch" )
- #pragma map( lfind , "_lfind" )
- #else
- #pragma map( lsearch, "?_lsearch" )
- #pragma map( lfind , "?_lfind" )
- #endif
- #else
- #pragma Alias( lsearch, "_lsearch" )
- #pragma Alias( lfind , "_lfind" )
- #endif
-
- void * _IMPORT _LNK_CONV bsearch( const void *, const void *, size_t, size_t,
- int ( * _LNK_CONV __compare )( const void *, const void * ) );
- void _IMPORT _LNK_CONV qsort( void *, size_t, size_t,
- int ( * _LNK_CONV __compare )( const void *, const void * ) );
-
- #endif
-
- #ifdef __cplusplus
- }
- #endif
-
- #endif
-
- #if (defined(__IBMC__) || defined(__IBMCPP__))
- #pragma info( none )
- #ifndef __CHKHDR__
- #pragma info( restore )
- #endif
- #pragma info( restore )
- #endif
-