home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 May / PCWorld_2001-05_cd.bin / Software / Vyzkuste / devc / _SETUP.5 / Group3 / varargs.h < prev    next >
C/C++ Source or Header  |  1999-11-07  |  3KB  |  99 lines

  1. /*
  2.  * varargs.h
  3.  *
  4.  * Old, non-ANSI facilities for stepping through a list of function
  5.  * arguments of an unknown number and type.
  6.  * TODO: Has not been tested. Essentially it copies the GCC version.
  7.  *
  8.  * NOTE: I believe GCC supplies a version of this header as well (in
  9.  *       addition to stdarg.h and others). The GCC version is more
  10.  *       complex, to deal with many alternate systems, but it is
  11.  *       probably more trustworthy overall. It would probably be
  12.  *       better to use the GCC version.
  13.  *
  14.  * NOTE: These are incompatible with the versions in stdarg.h and should
  15.  *       NOT be mixed! All new code should use the ANSI compatible versions.
  16.  *
  17.  * This file is part of the Mingw32 package.
  18.  *
  19.  * Contributors:
  20.  *  Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
  21.  *
  22.  *  THIS SOFTWARE IS NOT COPYRIGHTED
  23.  *
  24.  *  This source code is offered for use in the public domain. You may
  25.  *  use, modify or distribute it freely.
  26.  *
  27.  *  This code is distributed in the hope that it will be useful but
  28.  *  WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
  29.  *  DISCLAMED. This includes but is not limited to warranties of
  30.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  31.  *
  32.  * $Revision: 1.1.1.2 $
  33.  * $Author: khan $
  34.  * $Date: 1998/02/04 20:03:07 $
  35.  *
  36.  */
  37.  
  38. #ifndef    __STRICT_ANSI__
  39.  
  40. #ifndef _VARARGS_H_
  41. #define _VARARGS_H_
  42.  
  43. /* All the headers include this file. */
  44. #include <_mingw.h>
  45.  
  46. /* 
  47.  * I was told that Win NT likes this.
  48.  */
  49. #ifndef _VA_LIST_DEFINED
  50. #define _VA_LIST_DEFINED
  51. #endif
  52.  
  53. #ifndef RC_INVOKED
  54.  
  55. #ifndef _VA_LIST
  56. #define    _VA_LIST
  57. typedef char* va_list;
  58. #endif
  59.  
  60. /*
  61.  * Amount of space required in an argument list (ie. the stack) for an
  62.  * argument of type t.
  63.  */
  64. #define __va_argsiz(t)    \
  65.     (((sizeof(t) + sizeof(int) - 1) / sizeof(int)) * sizeof(int))
  66.  
  67. #define    va_alist    __builtin_va_alist
  68.  
  69. /*
  70.  * Used in old style argument lists IIRC. The ellipsis forces the compiler
  71.  * to realize this is a vararg function.
  72.  */
  73. #define va_dcl        int __builtin_va_alist; ...
  74.  
  75. #define va_start(ap)    \
  76.     ((ap) = ((va_list) &__builtin_va_alist))
  77. #define va_end(ap)    ((void)0)
  78.  
  79.  
  80. /*
  81.  * Increment ap to the next argument in the list while returing a
  82.  * pointer to what ap pointed to first, which is of type t.
  83.  *
  84.  * We cast to void* and then to t* because this avoids a warning about
  85.  * increasing the alignment requirement.
  86.  */
  87.  
  88. #define va_arg(ap, t)                    \
  89.      (((ap) = (ap) + __va_argsiz(t)),        \
  90.       *((t*) (void*) ((ap) - __va_argsiz(t))))
  91.  
  92.  
  93. #endif    /* Not RC_INVOKED */
  94.  
  95. #endif    /* Not _VARARGS_H_ */
  96.  
  97. #endif    /* Not __STRICT_ANSI__ */
  98.  
  99.