ROOT
Version v6.32
master
v6.34
v6.32
v6.30
v6.28
v6.26
v6.24
v6.22
v6.20
v6.18
v6.16
v6.14
v6.12
v6.10
v6.08
v6.06
v6.04
Reference Guide
▼
ROOT
ROOT Reference Documentation
Tutorials
►
Functional Parts
►
Namespaces
►
All Classes
▼
Files
▼
File List
►
bindings
▼
core
▼
base
►
doc
▼
inc
►
ROOT
►
Bswapcpy.h
►
Buttons.h
►
Bytes.h
►
Byteswap.h
►
GLConstants.h
Gtypes.h
Htypes.h
►
KeySymbols.h
►
Match.h
►
MessageTypes.h
RConfig.h
Riostream.h
Rpair.h
►
RQ_OBJECT.h
►
RStipples.h
►
Rtypes.h
►
RtypesImp.h
Strlen.h
►
TApplication.h
TAtt3D.h
TAttAxis.h
TAttBBox.h
TAttBBox2D.h
►
TAttFill.h
►
TAttLine.h
►
TAttMarker.h
TAttPad.h
►
TAttText.h
TBase64.h
►
TBenchmark.h
►
TBuffer.h
►
TBuffer3D.h
►
TBuffer3DTypes.h
►
TColor.h
►
TColorGradient.h
►
TDatime.h
►
TDirectory.h
►
TEnv.h
►
TException.h
TExec.h
TFileCollection.h
►
TFileInfo.h
TFolder.h
TInetAddress.h
TMacro.h
►
TMathBase.h
►
TMD5.h
TMemberInspector.h
TMessageHandler.h
TNamed.h
►
TNotifyLink.h
►
TObject.h
TObjString.h
TParameter.h
►
TPluginManager.h
►
TPoint.h
►
TPRegexp.h
►
TProcessID.h
TProcessUUID.h
►
TQClass.h
►
TQCommand.h
►
TQConnection.h
►
TQObject.h
►
TRedirectOutputGuard.h
TRef.h
TRefCnt.h
TRegexp.h
TRemoteObject.h
►
TROOT.h
►
TRootIOCtor.h
TStopwatch.h
►
TStorage.h
►
TString.h
►
TStringLong.h
►
TStyle.h
►
TSysEvtHandler.h
►
TSystem.h
TSystemDirectory.h
TSystemFile.h
TTask.h
►
TThreadSlots.h
►
TTime.h
TTimer.h
►
TTimeStamp.h
►
TUri.h
TUrl.h
►
TUUID.h
►
TVersionCheck.h
►
TVirtualAuth.h
TVirtualFFT.h
►
TVirtualGL.h
TVirtualMapFile.h
►
TVirtualMonitoring.h
►
TVirtualMutex.h
►
TVirtualPad.h
TVirtualPadEditor.h
TVirtualPadPainter.h
►
TVirtualPerfStats.h
►
TVirtualPS.h
►
TVirtualQConnection.h
►
TVirtualRWMutex.h
►
TVirtualTableInterface.h
TVirtualViewer3D.h
►
TVirtualX.h
►
Varargs.h
►
src
►
v7
►
clingutils
►
cont
►
dictgen
►
foundation
►
gui
►
imt
►
macosx
►
meta
►
metacling
►
multiproc
►
rint
►
testsupport
►
thread
►
unix
►
winnt
►
zip
►
documentation
►
geom
►
graf2d
►
graf3d
►
gui
►
hist
►
html
►
io
►
main
►
math
►
montecarlo
►
net
►
proof
►
roofit
►
sql
►
tmva
►
tree
►
tutorials
►
v6-32-00-patches
►
File Members
Release Notes
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
Loading...
Searching...
No Matches
Varargs.h
Go to the documentation of this file.
1
/* @(#)root/base:$Id$ */
2
3
/*************************************************************************
4
* Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
5
* All rights reserved. *
6
* *
7
* For the licensing terms see $ROOTSYS/LICENSE. *
8
* For the list of contributors see $ROOTSYS/README/CREDITS. *
9
*************************************************************************/
10
11
#ifndef ROOT_Varargs
12
#define ROOT_Varargs
13
14
#if defined(sparc) && defined(__CC_ATT301__)
15
16
extern
"C"
__builtin_va_arg_incr
(...);
17
typedef
char
*
va_list
;
18
# define va_end(ap)
19
# define va_start(ap, parmN) ap= (char*)(&parmN+1)
20
# define va_arg(ap, mode) ((mode*) __builtin_va_arg_incr((mode*)ap))[0]
21
# define va_(arg) __builtin_va_alist
22
23
# include <stdio.h>
24
25
extern
"C"
{
26
int
vfprintf
(
FILE
*,
const
char
*
fmt
,
va_list
ap
);
27
char
*
vsprintf
(
char
*,
const
char
*
fmt
,
va_list
ap
);
28
};
29
30
#else
31
# include <stdarg.h>
32
# if defined(sparc) && !defined(__GNUG__) && !defined(__CC_SUN21__) && !defined(__SVR4)
33
# define va_(arg) __builtin_va_alist
34
# else
35
# define va_(arg) arg
36
# endif
37
38
#endif
39
40
#if !defined(R__VA_COPY)
41
# if defined(va_copy)
42
# define R__VA_COPY(to, from) va_copy((to), (from))
43
# elif defined(__va_copy)
44
# define R__VA_COPY(to, from) __va_copy((to), (from))
45
# elif defined(_WIN32) && _MSC_VER < 1310
46
# define R__VA_COPY(to, from) (*(to) = *(from))
47
# else
48
# define R__VA_COPY(to, from) ((to) = (from))
49
# endif
50
#endif
51
52
#endif
TRangeDynCast
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
Definition
TCollection.h:358
ROOT::Detail::TRangeCast
Definition
TCollection.h:311
core
base
inc
Varargs.h
ROOT v6-32 - Reference Guide Generated on Thu Feb 20 2025 14:38:43 (GVA Time) using Doxygen 1.10.0