home *** CD-ROM | disk | FTP | other *** search
/ Serving the Web / ServingTheWeb1995.disc1of1.iso / linux / slacksrce / d / libc / libc-4.6 / libc-4 / libc-linux / nls / mcprt.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-10-20  |  2.0 KB  |  63 lines

  1. #ifndef mcprt_h
  2. #define mcprt_h
  3.  
  4.  
  5. /***********************************************************
  6. Copyright 1990, by Alfalfa Software Incorporated, Cambridge, Massachusetts.
  7.  
  8.                         All Rights Reserved
  9.  
  10. Permission to use, copy, modify, and distribute this software and its
  11. documentation for any purpose and without fee is hereby granted,
  12. provided that the above copyright notice appear in all copies and that
  13. both that copyright notice and this permission notice appear in
  14. supporting documentation, and that Alfalfa's name not be used in
  15. advertising or publicity pertaining to distribution of the software
  16. without specific, written prior permission.
  17.  
  18. ALPHALPHA DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  19. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  20. ALPHALPHA BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  21. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  22. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  23. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  24. SOFTWARE.
  25.  
  26. If you make any modifications, bugfixes or other changes to this software
  27. we'd appreciate it if you could send a copy to us so we can keep things
  28. up-to-date.  Many thanks.
  29.                 Kee Hinckley
  30.                 Alfalfa Software, Inc.
  31.                 267 Allston St., #3
  32.                 Cambridge, MA 02139  USA
  33.                 nazgul@alfalfa.com
  34.     
  35. ******************************************************************/
  36.  
  37.  
  38. /* Edit History
  39.  
  40. 01/18/91   3 hamilton    #if not rescanned
  41. 01/12/91   2 schulert    conditionally use prototypes
  42. 12/13/90   1 schulert    add ifdef __cplusplus
  43. 11/03/90   2 hamilton    Alphalpha->Alfalfa & OmegaMail->Poste
  44. 08/10/90   1 nazgul    Initial version
  45. */
  46.  
  47.  
  48. #include <stdio.h>
  49.  
  50. #ifdef USENLS
  51. #  ifdef I_STDARG
  52. extern int         MCprintf(char *fmt, ...);
  53. extern int         MCfprintf(FILE *fptr, char *fmt, ...);
  54. extern int         MCsprintf(char *cptr, char *fmt, ...);
  55. #  else
  56. extern int         MCprintf();
  57. extern int         MCfprintf();
  58. extern int         MCsprintf();
  59. #  endif
  60. #endif
  61.  
  62. #endif
  63.