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

  1. /*
  2.  * stdarg.h
  3.  *
  4.  * Provides facilities for stepping through a list of function arguments of
  5.  * an unknown number and type.
  6.  *
  7.  * NOTE: Gcc should provide stdarg.h, and I believe their version will work
  8.  *       with crtdll. If necessary I think you can replace this with the GCC
  9.  *       stdarg.h.
  10.  *
  11.  * Note that the type used in va_arg is supposed to match the actual type
  12.  * *after default promotions*. Thus, va_arg (..., short) is not valid.
  13.  *
  14.  * This file is part of the Mingw32 package.
  15.  *
  16.  * Contributors:
  17.  *  Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
  18.  *
  19.  *  THIS SOFTWARE IS NOT COPYRIGHTED
  20.  *
  21.  *  This source code is offered for use in the public domain. You may
  22.  *  use, modify or distribute it freely.
  23.  *
  24.  *  This code is distributed in the hope that it will be useful but
  25.  *  WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
  26.  *  DISCLAMED. This includes but is not limited to warranties of
  27.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  28.  *
  29.  * $Revision: 1.1.1.3 $
  30.  * $Author: khan $
  31.  * $Date: 1998/02/04 20:03:06 $
  32.  *
  33.  */
  34.  
  35. #ifndef _STDARG_H_
  36. #define _STDARG_H_
  37.  
  38. /* All the headers include this file. */
  39. #include <_mingw.h>
  40.  
  41. /*
  42.  * Don't do any of this stuff for the resource compiler.
  43.  */
  44. #ifndef RC_INVOKED
  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    _VA_LIST
  54. #define _VA_LIST
  55. typedef char* va_list;
  56. #endif
  57.  
  58.  
  59. /*
  60.  * Amount of space required in an argument list (ie. the stack) for an
  61.  * argument of type t.
  62.  */
  63. #define __va_argsiz(t)    \
  64.     (((sizeof(t) + sizeof(int) - 1) / sizeof(int)) * sizeof(int))
  65.  
  66.  
  67. /*
  68.  * Start variable argument list processing by setting AP to point to the
  69.  * argument after pN.
  70.  */
  71. #ifdef    __GNUC__
  72. /*
  73.  * In GNU the stack is not necessarily arranged very neatly in order to
  74.  * pack shorts and such into a smaller argument list. Fortunately a
  75.  * neatly arranged version is available through the use of __builtin_next_arg.
  76.  */
  77. #define va_start(ap, pN)    \
  78.     ((ap) = ((va_list) __builtin_next_arg(pN)))
  79. #else
  80. /*
  81.  * For a simple minded compiler this should work (it works in GNU too for
  82.  * vararg lists that don't follow shorts and such).
  83.  */
  84. #define va_start(ap, pN)    \
  85.     ((ap) = ((va_list) (&pN) + __va_argsiz(pN)))
  86. #endif
  87.  
  88.  
  89. /*
  90.  * End processing of variable argument list. In this case we do nothing.
  91.  */
  92. #define va_end(ap)    ((void)0)
  93.  
  94.  
  95. /*
  96.  * Increment ap to the next argument in the list while returing a
  97.  * pointer to what ap pointed to first, which is of type t.
  98.  *
  99.  * We cast to void* and then to t* because this avoids a warning about
  100.  * increasing the alignment requirement.
  101.  */
  102.  
  103. #define va_arg(ap, t)                    \
  104.      (((ap) = (ap) + __va_argsiz(t)),        \
  105.       *((t*) (void*) ((ap) - __va_argsiz(t))))
  106.  
  107. #endif /* Not RC_INVOKED */
  108.  
  109. #endif /* not _STDARG_H_ */
  110.