C++ TargetRTS
Loading...
Searching...
No Matches
RTFormat.h
1/*
2 * Licensed Materials - Property of HCL and/or IBM
3 * Copyright HCL Technologies Ltd. 2016, 2021. All Rights Reserved.
4 * Copyright IBM Corporation 1999, 2016. All Rights Reserved.
5 *
6 * U.S. Government Users Restricted Rights - Use, duplication or
7 * disclosure restricted by GSA ADP Schedule.
8 */
9
10#ifndef __RTFormat_h__
11#define __RTFormat_h__ included
12
13#ifdef PRAGMA
14#pragma interface
15#endif
16
17#ifndef __RTConfig_h__
18#include <RTConfig.h>
19#endif
20
22{
23public:
24 static int _int ( int, char *, int );
25 static int _long ( long, char *, int );
26 static int _longlong( long long, char *, int );
27 static int _unsigned( unsigned long, char *, int );
28 static int _unsignedlonglong( unsigned long long, char *, int );
29 static int _void ( const void *, char *, int );
30#if RTUseFloatingPoint
31 static int _float ( float, char *, int );
32 static int _double ( double, char *, int );
33#endif
34};
35
36#endif // __RTFormat_h__
Definition: RTFormat.h:22