Gaudi Framework, version v23r2

Home   Generated: Thu Jun 28 2012
Defines | Functions

xtoa.h File Reference

#include "GaudiKernel/Kernel.h"
#include <cstdlib>
Include dependency graph for xtoa.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Defines

#define __cdecl
#define __stdcall
#define _ecvt   ecvt

Functions

GAUDI_API char *__cdecl _itoa (int val, char *buf, int radix)
GAUDI_API char *__cdecl _ltoa (long val, char *buf, int radix)
GAUDI_API char *__cdecl _ultoa (unsigned long val, char *buf, int radix)

Define Documentation

#define __cdecl

Definition at line 2 of file xtoa.h.

#define __stdcall

Definition at line 3 of file xtoa.h.

#define _ecvt   ecvt

Definition at line 21 of file xtoa.h.


Function Documentation

GAUDI_API char* __cdecl _itoa ( int  val,
char *  buf,
int  radix 
)

Definition at line 83 of file xtoa.cpp.

                                                                 {
  if (radix == 10 && val < 0)
    xtoa((unsigned long)val, buf, radix, 1);
  else
    xtoa((unsigned long)(unsigned int)val, buf, radix, 0);
  return buf;
}
GAUDI_API char* __cdecl _ltoa ( long  val,
char *  buf,
int  radix 
)

Definition at line 91 of file xtoa.cpp.

                                                                 {
  xtoa((unsigned long)val, buf, radix, (radix == 10 && val < 0));
  return buf;
}
GAUDI_API char* __cdecl _ultoa ( unsigned long  val,
char *  buf,
int  radix 
)

Definition at line 96 of file xtoa.cpp.

                                                                                {
  xtoa(val, buf, radix, 0);
  return buf;
}
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Defines

Generated at Thu Jun 28 2012 23:27:32 for Gaudi Framework, version v23r2 by Doxygen version 1.7.2 written by Dimitri van Heesch, © 1997-2004