home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / header45.zip / libc / monetary.h < prev    next >
Text File  |  1999-03-15  |  2KB  |  61 lines

  1. #if __IBMC__ || __IBMCPP__
  2. #pragma info( none )
  3. #ifndef __CHKHDR__
  4.    #pragma info( none )
  5. #endif
  6. #pragma info( restore )
  7. #endif
  8.  
  9. #ifndef __monetary_h
  10.    #define __monetary_h
  11.  
  12.    #ifdef __cplusplus
  13.       extern "C" {
  14.    #endif
  15.  
  16.    #ifndef  _LNK_CONV
  17.       #if __IBMC__ || __IBMCPP__ || defined(_OPTLINK_SUPPORTED)
  18.          #define _LNK_CONV   _Optlink
  19.       #else
  20.          #define _LNK_CONV
  21.       #endif
  22.    #endif
  23.  
  24.    #ifndef _IMPORT
  25.       #ifdef __IMPORTLIB__
  26.          #define _IMPORT _Import
  27.       #else
  28.          #define _IMPORT
  29.       #endif
  30.    #endif
  31.  
  32.    /********************************************************************/
  33.    /*  <monetary.h> header file                                        */
  34.    /*                                                                  */
  35.    /*  (C) Copyright IBM Corp. 1991, 1995.                             */
  36.    /*  - Licensed Material - Program-Property of IBM                   */
  37.    /*  - All rights reserved                                           */
  38.    /*                                                                  */
  39.    /********************************************************************/
  40.  
  41.  
  42.    #include <stddef.h>
  43.    #include <sys/types.h>
  44.  
  45.    extern ssize_t _IMPORT _LNK_CONV strfmon(char *, size_t, const char *, ...);
  46.  
  47.    #ifdef __cplusplus
  48.       }
  49.    #endif
  50.  
  51. #endif
  52.  
  53. #if __IBMC__ || __IBMCPP__
  54. #pragma info( none )
  55. #ifndef __CHKHDR__
  56.    #pragma info( restore )
  57. #endif
  58. #pragma info( restore )
  59. #endif
  60.  
  61.