home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / borland / cb / setup / cbuilder / data.z / VARARGS.H < prev    next >
C/C++ Source or Header  |  1997-02-28  |  938b  |  39 lines

  1. /*  varargs.h
  2.  
  3.     Definitions for accessing parameters in functions that accept
  4.     a variable number of arguments.  These macros are compatible
  5.     with UNIX System V.  Use stdarg.h for ANSI C compatibility.
  6.  
  7. */
  8.  
  9. /*
  10.  *      C/C++ Run Time Library - Version 8.0
  11.  *
  12.  *      Copyright (c) 1991, 1997 by Borland International
  13.  *      All Rights Reserved.
  14.  *
  15.  */
  16. /* $Revision:   8.1  $ */
  17.  
  18. #ifndef __VARARGS_H
  19. #define __VARARGS_H
  20.  
  21. #ifdef __STDARG_H
  22. #error Can't include both STDARG.H and VARARGS.H
  23. #endif
  24.  
  25. #if !defined(___DEFS_H)
  26. #include <_defs.h>
  27. #endif
  28.  
  29. typedef void _FAR *va_list;
  30.  
  31. #define __size(x) ((sizeof(x)+sizeof(int)-1) & ~(sizeof(int)-1))
  32.  
  33. #define va_dcl va_list va_alist;
  34. #define va_start(ap) ap = (va_list)&va_alist
  35. #define va_arg(ap, type) (*(type _FAR *)(((*(char _FAR * _FAR *)&(ap))+=__size(type))-(__size(type))))
  36. #define va_end(ap)   ap = ((void _FAR *)0)
  37.  
  38. #endif  /* __VARARGS_H */
  39.