c.h
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:19k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * c.h
  4.  *   Fundamental C definitions.  This is included by every .c file in
  5.  *   postgres.
  6.  *
  7.  *
  8.  * Copyright (c) 1994, Regents of the University of California
  9.  *
  10.  * $Id: c.h,v 1.58.2.1 1999/07/30 18:26:57 scrappy Exp $
  11.  *
  12.  *-------------------------------------------------------------------------
  13.  */
  14. /*
  15.  *  TABLE OF CONTENTS
  16.  *
  17.  * When adding stuff to this file, please try and put stuff
  18.  * into the relevant section, or add new sections as appropriate.
  19.  *
  20.  *   section description
  21.  *   ------- ------------------------------------------------
  22.  * 1) bool, true, false, TRUE, FALSE, NULL
  23.  * 2) non-ansi C definitions:
  24.  * type prefixes: const, signed, volatile, inline
  25.  * cpp magic macros
  26.  * 3) standard system types
  27.  * 4) datum type
  28.  * 5) IsValid macros for system types
  29.  * 6) offsetof, lengthof, endof
  30.  * 7) exception handling definitions, Assert, Trap, etc macros
  31.  * 8) Min, Max, Abs, StrNCpy macros
  32.  * 9) externs
  33.  * 10) Berkeley-specific defs
  34.  * 11) system-specific hacks
  35.  *
  36.  *  NOTES
  37.  *
  38.  * This file is MACHINE AND COMPILER dependent!!! (For now.)
  39.  *
  40.  * ----------------------------------------------------------------
  41.  */
  42. #ifndef C_H
  43. #define C_H
  44. /* We have to include stdlib.h here because it defines many of these macros
  45.    on some platforms, and we only want our definitions used if stdlib.h doesn't
  46.    have its own.  The same goes for stddef and stdarg if present.
  47. */
  48. #include "config.h"
  49. #include <stdio.h>
  50. #include <stdlib.h>
  51. #include <string.h>
  52. #ifdef STDC_HEADERS
  53. #include <stddef.h>
  54. #include <stdarg.h>
  55. #endif
  56. #ifdef __CYGWIN32__
  57. #include <errno.h>
  58. #endif
  59. /* ----------------------------------------------------------------
  60.  * Section 1: bool, true, false, TRUE, FALSE, NULL
  61.  * ----------------------------------------------------------------
  62.  */
  63. /*
  64.  * bool
  65.  * Boolean value, either true or false.
  66.  *
  67.  */
  68. #ifndef __cplusplus
  69. #ifndef bool
  70. typedef char bool;
  71. #endif  /* ndef bool */
  72. #endif  /* not C++ */
  73. #ifndef true
  74. #define true ((bool) 1)
  75. #endif
  76. #ifndef false
  77. #define false ((bool) 0)
  78. #endif
  79. typedef bool *BoolPtr;
  80. #ifndef TRUE
  81. #define TRUE 1
  82. #endif  /* TRUE */
  83. #ifndef FALSE
  84. #define FALSE 0
  85. #endif  /* FALSE */
  86. /*
  87.  * NULL
  88.  * Null pointer.
  89.  */
  90. #ifndef NULL
  91. #define NULL ((void *) 0)
  92. #endif  /* !defined(NULL) */
  93. /* ----------------------------------------------------------------
  94.  * Section 2: non-ansi C definitions:
  95.  *
  96.  * type prefixes: const, signed, volatile, inline
  97.  * cpp magic macros
  98.  * ----------------------------------------------------------------
  99.  */
  100. /*
  101.  * CppAsString
  102.  * Convert the argument to a string, using the C preprocessor.
  103.  * CppConcat
  104.  * Concatenate two arguments together, using the C preprocessor.
  105.  *
  106.  * Note: the standard Autoconf macro AC_C_STRINGIZE actually only checks
  107.  * whether #identifier works, but if we have that we likely have ## too.
  108.  */
  109. #if defined(HAVE_STRINGIZE)
  110. #define CppAsString(identifier) #identifier
  111. #define CppConcat(x, y) x##y
  112. #else /* !HAVE_STRINGIZE */
  113. #define CppAsString(identifier) "identifier"
  114. /*
  115.  * CppIdentity -- On Reiser based cpp's this is used to concatenate
  116.  * two tokens.  That is
  117.  * CppIdentity(A)B ==> AB
  118.  * We renamed it to _private_CppIdentity because it should not
  119.  * be referenced outside this file.  On other cpp's it
  120.  * produces  A  B.
  121.  */
  122. #define _priv_CppIdentity(x)x
  123. #define CppConcat(x, y) _priv_CppIdentity(x)y
  124. #endif  /* !HAVE_STRINGIZE */
  125. /*
  126.  * dummyret is used to set return values in macros that use ?: to make
  127.  * assignments.  gcc wants these to be void, other compilers like char
  128.  */
  129. #ifdef __GNUC__ /* GNU cc */
  130. #define dummyret void
  131. #else
  132. #define dummyret char
  133. #endif
  134. /* ----------------------------------------------------------------
  135.  * Section 3: standard system types
  136.  * ----------------------------------------------------------------
  137.  */
  138. /*
  139.  * Pointer
  140.  * Variable holding address of any memory resident object.
  141.  *
  142.  * XXX Pointer arithmetic is done with this, so it can't be void *
  143.  * under "true" ANSI compilers.
  144.  */
  145. typedef char *Pointer;
  146. /*
  147.  * intN
  148.  * Signed integer, EXACTLY N BITS IN SIZE,
  149.  * used for numerical computations and the
  150.  * frontend/backend protocol.
  151.  */
  152. typedef signed char int8; /* == 8 bits */
  153. typedef signed short int16; /* == 16 bits */
  154. typedef signed int int32; /* == 32 bits */
  155. /*
  156.  * uintN
  157.  * Unsigned integer, EXACTLY N BITS IN SIZE,
  158.  * used for numerical computations and the
  159.  * frontend/backend protocol.
  160.  */
  161. typedef unsigned char uint8; /* == 8 bits */
  162. typedef unsigned short uint16; /* == 16 bits */
  163. typedef unsigned int uint32; /* == 32 bits */
  164. /*
  165.  * floatN
  166.  * Floating point number, AT LEAST N BITS IN SIZE,
  167.  * used for numerical computations.
  168.  *
  169.  * Since sizeof(floatN) may be > sizeof(char *), always pass
  170.  * floatN by reference.
  171.  */
  172. typedef float float32data;
  173. typedef double float64data;
  174. typedef float *float32;
  175. typedef double *float64;
  176. /*
  177.  * boolN
  178.  * Boolean value, AT LEAST N BITS IN SIZE.
  179.  */
  180. typedef uint8 bool8; /* >= 8 bits */
  181. typedef uint16 bool16; /* >= 16 bits */
  182. typedef uint32 bool32; /* >= 32 bits */
  183. /*
  184.  * bitsN
  185.  * Unit of bitwise operation, AT LEAST N BITS IN SIZE.
  186.  */
  187. typedef uint8 bits8; /* >= 8 bits */
  188. typedef uint16 bits16; /* >= 16 bits */
  189. typedef uint32 bits32; /* >= 32 bits */
  190. /*
  191.  * wordN
  192.  * Unit of storage, AT LEAST N BITS IN SIZE,
  193.  * used to fetch/store data.
  194.  */
  195. typedef uint8 word8; /* >= 8 bits */
  196. typedef uint16 word16; /* >= 16 bits */
  197. typedef uint32 word32; /* >= 32 bits */
  198. /*
  199.  * Size
  200.  * Size of any memory resident object, as returned by sizeof.
  201.  */
  202. typedef size_t Size;
  203. /*
  204.  * Index
  205.  * Index into any memory resident array.
  206.  *
  207.  * Note:
  208.  * Indices are non negative.
  209.  */
  210. typedef unsigned int Index;
  211. #define MAXDIM 6
  212. typedef struct
  213. {
  214. int indx[MAXDIM];
  215. } IntArray;
  216. /*
  217.  * Offset
  218.  * Offset into any memory resident array.
  219.  *
  220.  * Note:
  221.  * This differs from an Index in that an Index is always
  222.  * non negative, whereas Offset may be negative.
  223.  */
  224. typedef signed int Offset;
  225. /* ----------------------------------------------------------------
  226.  * Section 4: datum type + support macros
  227.  * ----------------------------------------------------------------
  228.  */
  229. /*
  230.  * datum.h
  231.  * POSTGRES abstract data type datum representation definitions.
  232.  *
  233.  * Note:
  234.  *
  235.  * Port Notes:
  236.  * Postgres makes the following assumption about machines:
  237.  *
  238.  * sizeof(Datum) == sizeof(long) >= sizeof(void *) >= 4
  239.  *
  240.  * Postgres also assumes that
  241.  *
  242.  * sizeof(char) == 1
  243.  *
  244.  * and that
  245.  *
  246.  * sizeof(short) == 2
  247.  *
  248.  * If your machine meets these requirements, Datums should also be checked
  249.  * to see if the positioning is correct.
  250.  *
  251.  * This file is MACHINE AND COMPILER dependent!!!
  252.  */
  253. typedef unsigned long Datum; /* XXX sizeof(long) >= sizeof(void *) */
  254. typedef Datum *DatumPtr;
  255. #define GET_1_BYTE(datum) (((Datum) (datum)) & 0x000000ff)
  256. #define GET_2_BYTES(datum) (((Datum) (datum)) & 0x0000ffff)
  257. #define GET_4_BYTES(datum) (((Datum) (datum)) & 0xffffffff)
  258. #define SET_1_BYTE(value) (((Datum) (value)) & 0x000000ff)
  259. #define SET_2_BYTES(value) (((Datum) (value)) & 0x0000ffff)
  260. #define SET_4_BYTES(value) (((Datum) (value)) & 0xffffffff)
  261. /*
  262.  * DatumGetChar
  263.  * Returns character value of a datum.
  264.  */
  265. #define DatumGetChar(X) ((char) GET_1_BYTE(X))
  266. /*
  267.  * CharGetDatum
  268.  * Returns datum representation for a character.
  269.  */
  270. #define CharGetDatum(X) ((Datum) SET_1_BYTE(X))
  271. /*
  272.  * Int8GetDatum
  273.  * Returns datum representation for an 8-bit integer.
  274.  */
  275. #define Int8GetDatum(X) ((Datum) SET_1_BYTE(X))
  276. /*
  277.  * DatumGetUInt8
  278.  * Returns 8-bit unsigned integer value of a datum.
  279.  */
  280. #define DatumGetUInt8(X) ((uint8) GET_1_BYTE(X))
  281. /*
  282.  * UInt8GetDatum
  283.  * Returns datum representation for an 8-bit unsigned integer.
  284.  */
  285. #define UInt8GetDatum(X) ((Datum) SET_1_BYTE(X))
  286. /*
  287.  * DatumGetInt16
  288.  * Returns 16-bit integer value of a datum.
  289.  */
  290. #define DatumGetInt16(X) ((int16) GET_2_BYTES(X))
  291. /*
  292.  * Int16GetDatum
  293.  * Returns datum representation for a 16-bit integer.
  294.  */
  295. #define Int16GetDatum(X) ((Datum) SET_2_BYTES(X))
  296. /*
  297.  * DatumGetUInt16
  298.  * Returns 16-bit unsigned integer value of a datum.
  299.  */
  300. #define DatumGetUInt16(X) ((uint16) GET_2_BYTES(X))
  301. /*
  302.  * UInt16GetDatum
  303.  * Returns datum representation for a 16-bit unsigned integer.
  304.  */
  305. #define UInt16GetDatum(X) ((Datum) SET_2_BYTES(X))
  306. /*
  307.  * DatumGetInt32
  308.  * Returns 32-bit integer value of a datum.
  309.  */
  310. #define DatumGetInt32(X) ((int32) GET_4_BYTES(X))
  311. /*
  312.  * Int32GetDatum
  313.  * Returns datum representation for a 32-bit integer.
  314.  */
  315. #define Int32GetDatum(X) ((Datum) SET_4_BYTES(X))
  316. /*
  317.  * DatumGetUInt32
  318.  * Returns 32-bit unsigned integer value of a datum.
  319.  */
  320. #define DatumGetUInt32(X) ((uint32) GET_4_BYTES(X))
  321. /*
  322.  * UInt32GetDatum
  323.  * Returns datum representation for a 32-bit unsigned integer.
  324.  */
  325. #define UInt32GetDatum(X) ((Datum) SET_4_BYTES(X))
  326. /*
  327.  * DatumGetObjectId
  328.  * Returns object identifier value of a datum.
  329.  */
  330. #define DatumGetObjectId(X) ((Oid) GET_4_BYTES(X))
  331. /*
  332.  * ObjectIdGetDatum
  333.  * Returns datum representation for an object identifier.
  334.  */
  335. #define ObjectIdGetDatum(X) ((Datum) SET_4_BYTES(X))
  336. /*
  337.  * DatumGetPointer
  338.  * Returns pointer value of a datum.
  339.  */
  340. #define DatumGetPointer(X) ((Pointer) X)
  341. /*
  342.  * PointerGetDatum
  343.  * Returns datum representation for a pointer.
  344.  */
  345. #define PointerGetDatum(X) ((Datum) X)
  346. /*
  347.  * DatumGetName
  348.  * Returns name value of a datum.
  349.  */
  350. #define DatumGetName(X) ((Name) DatumGetPointer((Datum) X))
  351. /*
  352.  * NameGetDatum
  353.  * Returns datum representation for a name.
  354.  */
  355. #define NameGetDatum(X) PointerGetDatum((Pointer) X)
  356. /*
  357.  * DatumGetFloat32
  358.  * Returns 32-bit floating point value of a datum.
  359.  * This is really a pointer, of course.
  360.  */
  361. #define DatumGetFloat32(X) ((float32) DatumGetPointer((Datum) X))
  362. /*
  363.  * Float32GetDatum
  364.  * Returns datum representation for a 32-bit floating point number.
  365.  * This is really a pointer, of course.
  366.  */
  367. #define Float32GetDatum(X) PointerGetDatum((Pointer) X)
  368. /*
  369.  * DatumGetFloat64
  370.  * Returns 64-bit floating point value of a datum.
  371.  * This is really a pointer, of course.
  372.  */
  373. #define DatumGetFloat64(X) ((float64) DatumGetPointer(X))
  374. /*
  375.  * Float64GetDatum
  376.  * Returns datum representation for a 64-bit floating point number.
  377.  * This is really a pointer, of course.
  378.  */
  379. #define Float64GetDatum(X) PointerGetDatum((Pointer) X)
  380. /* ----------------------------------------------------------------
  381.  * Section 5: IsValid macros for system types
  382.  * ----------------------------------------------------------------
  383.  */
  384. /*
  385.  * BoolIsValid
  386.  * True iff bool is valid.
  387.  */
  388. #define BoolIsValid(boolean) ((boolean) == false || (boolean) == true)
  389. /*
  390.  * PointerIsValid
  391.  * True iff pointer is valid.
  392.  */
  393. #define PointerIsValid(pointer) (bool)((void*)(pointer) != NULL)
  394. /*
  395.  * PointerIsInBounds
  396.  * True iff pointer is within given bounds.
  397.  *
  398.  * Note:
  399.  * Assumes the bounded interval to be [min,max),
  400.  * i.e. closed on the left and open on the right.
  401.  */
  402. #define PointerIsInBounds(pointer, min, max) 
  403. ((min) <= (pointer) && (pointer) < (max))
  404. /*
  405.  * PointerIsAligned
  406.  * True iff pointer is properly aligned to point to the given type.
  407.  */
  408. #define PointerIsAligned(pointer, type) 
  409. (((long)(pointer) % (sizeof (type))) == 0)
  410. /* ----------------------------------------------------------------
  411.  * Section 6: offsetof, lengthof, endof
  412.  * ----------------------------------------------------------------
  413.  */
  414. /*
  415.  * offsetof
  416.  * Offset of a structure/union field within that structure/union.
  417.  *
  418.  * XXX This is supposed to be part of stddef.h, but isn't on
  419.  * some systems (like SunOS 4).
  420.  */
  421. #ifndef offsetof
  422. #define offsetof(type, field) ((long) &((type *)0)->field)
  423. #endif  /* offsetof */
  424. /*
  425.  * lengthof
  426.  * Number of elements in an array.
  427.  */
  428. #define lengthof(array) (sizeof (array) / sizeof ((array)[0]))
  429. /*
  430.  * endof
  431.  * Address of the element one past the last in an array.
  432.  */
  433. #define endof(array) (&array[lengthof(array)])
  434. /* ----------------------------------------------------------------
  435.  * Section 7: exception handling definitions
  436.  * Assert, Trap, etc macros
  437.  * ----------------------------------------------------------------
  438.  */
  439. /*
  440.  * Exception Handling definitions
  441.  */
  442. typedef char *ExcMessage;
  443. typedef struct Exception
  444. {
  445. ExcMessage message;
  446. } Exception;
  447. /*
  448.  * USE_ASSERT_CHECKING, if defined, turns on all the assertions.
  449.  * - plai  9/5/90
  450.  *
  451.  * It should _NOT_ be defined in releases or in benchmark copies
  452.  */
  453. /*
  454.  * Trap
  455.  * Generates an exception if the given condition is true.
  456.  *
  457.  */
  458. #define Trap(condition, exception) 
  459. { if ((assert_enabled) && (condition)) 
  460. ExceptionalCondition(CppAsString(condition), &(exception), 
  461. (char*)NULL, __FILE__, __LINE__); }
  462. /*
  463.  * TrapMacro is the same as Trap but it's intended for use in macros:
  464.  *
  465.  * #define foo(x) (AssertM(x != 0) && bar(x))
  466.  *
  467.  * Isn't CPP fun?
  468.  */
  469. #define TrapMacro(condition, exception) 
  470. ((bool) ((! assert_enabled) || (! condition) || 
  471.  (ExceptionalCondition(CppAsString(condition), 
  472.   &(exception), 
  473.   (char*) NULL, __FILE__, __LINE__))))
  474. #ifndef USE_ASSERT_CHECKING
  475. #define Assert(condition)
  476. #define AssertMacro(condition) (void)true
  477. #define AssertArg(condition)
  478. #define AssertState(condition)
  479. #define assert_enabled 0
  480. #else
  481. #define Assert(condition) 
  482. Trap(!(condition), FailedAssertion)
  483. #define AssertMacro(condition) 
  484. (void)TrapMacro(!(condition), FailedAssertion)
  485. #define AssertArg(condition) 
  486. Trap(!(condition), BadArg)
  487. #define AssertState(condition) 
  488. Trap(!(condition), BadState)
  489. extern int assert_enabled;
  490. #endif  /* USE_ASSERT_CHECKING */
  491. /*
  492.  * LogTrap
  493.  * Generates an exception with a message if the given condition is true.
  494.  *
  495.  */
  496. #define LogTrap(condition, exception, printArgs) 
  497. { if ((assert_enabled) && (condition)) 
  498. ExceptionalCondition(CppAsString(condition), &(exception), 
  499. vararg_format printArgs, __FILE__, __LINE__); }
  500. /*
  501.  * LogTrapMacro is the same as LogTrap but it's intended for use in macros:
  502.  *
  503.  * #define foo(x) (LogAssertMacro(x != 0, "yow!") && bar(x))
  504.  */
  505. #define LogTrapMacro(condition, exception, printArgs) 
  506. ((bool) ((! assert_enabled) || (! condition) || 
  507.  (ExceptionalCondition(CppAsString(condition), 
  508.    &(exception), 
  509.    vararg_format printArgs, __FILE__, __LINE__))))
  510. #ifndef USE_ASSERT_CHECKING
  511. #define LogAssert(condition, printArgs)
  512. #define LogAssertMacro(condition, printArgs) true
  513. #define LogAssertArg(condition, printArgs)
  514. #define LogAssertState(condition, printArgs)
  515. #else
  516. #define LogAssert(condition, printArgs) 
  517. LogTrap(!(condition), FailedAssertion, printArgs)
  518. #define LogAssertMacro(condition, printArgs) 
  519. LogTrapMacro(!(condition), FailedAssertion, printArgs)
  520. #define LogAssertArg(condition, printArgs) 
  521. LogTrap(!(condition), BadArg, printArgs)
  522. #define LogAssertState(condition, printArgs) 
  523. LogTrap(!(condition), BadState, printArgs)
  524. extern int assertEnable(int val);
  525. #ifdef ASSERT_CHECKING_TEST
  526. extern int assertTest(int val);
  527. #endif
  528. #endif  /* USE_ASSERT_CHECKING */
  529. /* ----------------------------------------------------------------
  530.  * Section 8: Min, Max, Abs macros
  531.  * ----------------------------------------------------------------
  532.  */
  533. /*
  534.  * Max
  535.  * Return the maximum of two numbers.
  536.  */
  537. #define Max(x, y) ((x) > (y) ? (x) : (y))
  538. /*
  539.  * Min
  540.  * Return the minimum of two numbers.
  541.  */
  542. #define Min(x, y) ((x) < (y) ? (x) : (y))
  543. /*
  544.  * Abs
  545.  * Return the absolute value of the argument.
  546.  */
  547. #define Abs(x) ((x) >= 0 ? (x) : -(x))
  548. /*
  549.  * StrNCpy
  550.  * Does string copy, and forces terminating NULL
  551.  */
  552. /* we do this so if the macro is used in an if action, it will work */
  553. #define StrNCpy(dst,src,len)
  554. ((len) > 0) ? 
  555. strncpy((dst),(src),(len)-1), 
  556. *((dst)+(len)-1)='' 
  557. (dummyret)NULL,(void)(dst) 
  558. )
  559. /* Get a bit mask of the bits set in non-int32 aligned addresses */
  560. #define INT_ALIGN_MASK (sizeof(int32) - 1)
  561. /*
  562.  * This function gets call too often, so we inline it if we can.
  563.  * Are we aligned for int32?
  564.  * We have to cast the pointer to int so we can do the AND
  565.  * We got the 64 number by testing this against the stock memset() on
  566.  * BSD/OS 3.0. Larger values were slower.
  567.  */
  568. #define MemSet(start, val, len) do 
  569. if (((long)(start) & INT_ALIGN_MASK) == 0 && 
  570. ((len) & INT_ALIGN_MASK) == 0 && 
  571. (val) == 0 && 
  572. (len) <= 64) 
  573. int32 *_i = (int32 *)(start); 
  574. int32 *_stop = (int32 *)((char *)(start) + (len)); 
  575. while (_i < _stop) 
  576. *_i++ = 0; 
  577. else 
  578. memset((start), (val), (len)); 
  579. } while (0)
  580. /* ----------------------------------------------------------------
  581.  * Section 9: externs
  582.  * ----------------------------------------------------------------
  583.  */
  584. extern Exception FailedAssertion;
  585. extern Exception BadArg;
  586. extern Exception BadState;
  587. /* in utils/error/assert.c */
  588. extern int ExceptionalCondition(char *conditionName,
  589.  Exception *exceptionP, char *details,
  590.  char *fileName, int lineNumber);
  591. /* ----------------
  592.  * vararg_format is used by assert and the exception handling stuff
  593.  * ----------------
  594.  */
  595. extern char *vararg_format(const char *fmt,...);
  596. /* ----------------------------------------------------------------
  597.  * Section 10: berkeley-specific configuration
  598.  *
  599.  * this section contains settings which are only relevant to the UC Berkeley
  600.  * sites.  Other sites can ignore this
  601.  * ----------------------------------------------------------------
  602.  */
  603. /* ----------------
  604.  * storage managers
  605.  *
  606.  * These are experimental and are not supported in the code that
  607.  * we distribute to other sites.
  608.  * ----------------
  609.  */
  610. #ifdef NOT_USED
  611. #define STABLE_MEMORY_STORAGE
  612. #endif
  613. /* ----------------------------------------------------------------
  614.  * Section 11: system-specific hacks
  615.  *
  616.  * This should be limited to things that absolutely have to be
  617.  * included in every source file. The changes should be factored
  618.  * into a separate file so that changes to one port don't require
  619.  * changes to c.h (and everyone recompiling their whole system).
  620.  * ----------------------------------------------------------------
  621.  */
  622. #ifdef FIXADE
  623. #if defined(hpux)
  624. #include "port/hpux/fixade.h" /* for unaligned access fixup */
  625. #endif  /* hpux */
  626. #endif
  627. #if defined(sun) && defined(__sparc__) && !defined(__SVR4)
  628. #define memmove(d, s, l) bcopy(s, d, l)
  629. #include <unistd.h>
  630. #include <varargs.h>
  631. #endif
  632. /* These are for things that are one way on Unix and another on NT */
  633. #define NULL_DEV "/dev/null"
  634. #define COPY_CMD "cp"
  635. #define SEP_CHAR '/'
  636. /* defines for dynamic linking on Win32 platform */
  637. #ifdef __CYGWIN32__
  638. #if __GNUC__ && ! defined (__declspec)
  639. #error You need egcs 1.1 or newer for compiling!
  640. #endif
  641. #ifdef BUILDING_DLL
  642. #define DLLIMPORT __declspec (dllexport)
  643. #else /* not BUILDING_DLL */
  644. #define DLLIMPORT __declspec (dllimport)
  645. #endif
  646. #else /* not CYGWIN */
  647. #define DLLIMPORT
  648. #endif
  649. /* Provide prototypes for routines not present in a particular machine's
  650.  * standard C library. It'd be better to put these in config.h, but
  651.  * in config.h we haven't yet included anything that defines size_t...
  652.  */
  653. #ifndef HAVE_SNPRINTF
  654. extern int snprintf(char *str, size_t count, const char *fmt,...);
  655. #endif
  656. #ifndef HAVE_VSNPRINTF
  657. extern int vsnprintf(char *str, size_t count, const char *fmt, va_list args);
  658. #endif
  659. #ifndef HAVE_MEMMOVE
  660. #include <regex/utils.h>
  661. #endif
  662. /* ----------------
  663.  * end of c.h
  664.  * ----------------
  665.  */
  666. #endif  /* C_H */