home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / apps / database / postgres / postgre4.z / postgre4 / src / lib / H / obsolete / libc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-27  |  1.5 KB  |  107 lines

  1. #ifndef    LibCIncluded    /* Include this file only once. */
  2. #define LibCIncluded    1
  3. /* ----------------
  4.  *    THIS FILE IS GOING AWAY.. -cim 6/12/90
  5.  * ----------------
  6.  */
  7.  
  8. #define LIBC_H_OBSOLETE 1
  9. #define LIBC_H_OBSOLETE 2
  10.     
  11. #if 0
  12. /*
  13.  * libc.h --
  14.  *    Standard UNIX C library definitions.
  15.  *
  16.  * Note:
  17.  *    This file for the Sun UNIX OPERATING SYSTEM!!!
  18.  *
  19.  * Identification:
  20.  *    $Header: /private/postgres/src/lib/H/obsolete/RCS/libc.h,v 1.1 1990/06/12 21:25:10 cimarron Version_2 $
  21.  */
  22.  
  23. /*
  24.  *    MDD 11-Apr-89, removed #include <memory.h>
  25.  */
  26.  
  27. extern char
  28.     *memccpy(),
  29.     *memchr(),
  30.     *memcpy(),
  31.     *memset();
  32. extern int memcmp();
  33.  
  34. #ifndef C_H
  35. #include "c.h"
  36. #endif
  37.  
  38. /* ----------------
  39.  *    LibCCopyLength is only used within this file. -cim 6/12/90
  40.  * ----------------
  41.  */
  42. typedef int    LibCCopyLength;
  43.  
  44. /*
  45.  * memccpy --
  46.  *    memory(3)
  47.  */
  48. extern
  49. char *
  50. memccpy ARGS((
  51.     const String        toBuffer,
  52.     const String        fromBuffer,
  53.     const char        stopCharacter,
  54.     const LibCCopyLength    length
  55. ));
  56.  
  57. /*
  58.  * memchr --
  59.  *    memory(3)
  60.  */
  61. extern
  62. char *
  63. memchr ARGS((
  64.     const String        buffer,
  65.     const char        stopCharacter,
  66.     const LibCCopyLength    length
  67. ));
  68.  
  69. /*
  70.  * memchr --
  71.  *    memory(3)
  72.  */
  73. extern
  74. int
  75. memcmp ARGS((
  76.     const String        buffer1,
  77.     const String        buffer2,
  78.     const LibCCopyLength    length
  79. ));
  80.  
  81. /*
  82.  * memcpy --
  83.  *    memory(3)
  84.  */
  85. extern
  86. char *
  87. memcpy ARGS((
  88.     const String        toBuffer,
  89.     const String        fromBuffer,
  90.     const LibCCopyLength    length
  91. ));
  92.  
  93. /*
  94.  * memset --
  95.  *    memory(3)
  96.  */
  97. extern
  98. char *
  99. memset ARGS((
  100.     const String        toBuffer,
  101.     const char        value,
  102.     const LibCCopyLength    length
  103. ));
  104.  
  105. #endif
  106. #endif    /* !defined(LibCIncluded) */
  107.