home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cset21v1.zip / IBMCPP / INCLUDE / WCSTR.H < prev   
Text File  |  1993-09-17  |  3KB  |  77 lines

  1. #pragma info( none )
  2. #ifndef __CHKHDR__
  3.    #pragma info( none )
  4. #endif
  5. #pragma info( restore )
  6.  
  7. #ifndef __wcstr_h
  8.    #define __wcstr_h
  9.  
  10.    #ifdef __cplusplus
  11.       extern "C" {
  12.    #endif
  13.  
  14.    /********************************************************************/
  15.    /*  <wcstr.h> header file                                           */
  16.    /*                                                                  */
  17.    /*  Licensed Materials - Property of IBM                            */
  18.    /*                                                                  */
  19.    /*  IBM C/C++ Tools Version 2.01                                    */
  20.    /*  Copyright (C) International Business Machines Corp., 1991,1993  */
  21.    /*  All rights reserved                                             */
  22.    /*                                                                  */
  23.    /*  US Government Users Restricted Rights -                         */
  24.    /*  Use, duplication, or disclosure restricted                      */
  25.    /*  by GSA ADP Schedule Contract with IBM Corp.                     */
  26.    /*                                                                  */
  27.    /********************************************************************/
  28.  
  29.    #ifndef __ANSI__
  30.  
  31.       #ifndef __size_t
  32.          #define __size_t
  33.          typedef unsigned int size_t;
  34.       #endif
  35.  
  36.       #ifndef NULL
  37.          #if (defined(__EXTENDED__)  || defined( __cplusplus ))
  38.             #define NULL 0
  39.          #else
  40.             #define NULL ((void *)0)
  41.          #endif
  42.       #endif
  43.  
  44.  
  45.       #ifndef __wchar_t
  46.          #define __wchar_t
  47.          typedef unsigned short wchar_t;
  48.       #endif
  49.  
  50.       wchar_t * _Optlink wcscat( wchar_t *, const wchar_t * );
  51.       wchar_t * _Optlink wcschr( const wchar_t *, wchar_t );
  52.       int       _Optlink wcscmp( const wchar_t *, const wchar_t * );
  53.       wchar_t * _Optlink wcscpy( wchar_t *, const wchar_t * );
  54.       size_t    _Optlink wcscspn( const wchar_t *, const wchar_t * );
  55.       size_t    _Optlink wcslen( const wchar_t * );
  56.       wchar_t * _Optlink wcsncat( wchar_t *, const wchar_t *, size_t );
  57.       int       _Optlink wcsncmp( const wchar_t *, const wchar_t *, size_t );
  58.       wchar_t * _Optlink wcsncpy( wchar_t *, const wchar_t *, size_t );
  59.       wchar_t * _Optlink wcspbrk( const wchar_t *, const wchar_t * );
  60.       wchar_t * _Optlink wcsrchr( const wchar_t *, wchar_t );
  61.       size_t    _Optlink wcsspn( const wchar_t *, const wchar_t * );
  62.       wchar_t * _Optlink wcswcs( const wchar_t *, const wchar_t * );
  63.  
  64.    #endif
  65.  
  66.    #ifdef __cplusplus
  67.       }
  68.    #endif
  69.  
  70. #endif
  71.  
  72. #pragma info( none )
  73. #ifndef __CHKHDR__
  74.    #pragma info( restore )
  75. #endif
  76. #pragma info( restore )
  77.