Sha256: 61227c8fc3cad343196a20fef77612212d5ec6718ad41b6ea7a64d7e5766227b

Contents?: true

Size: 574 Bytes

Versions: 5

Compression:

Stored size: 574 Bytes

Contents

#ifndef _IV_DTOA_H_
#define _IV_DTOA_H_
#include "byteorder.h"

extern "C" char* dtoa(double d, int mode, int ndigits,
                      int *decpt, int *sign, char **rve);
extern "C" void freedtoa(char *s);

namespace v8 {
namespace internal {

// Printing floating-point numbers quickly and accurately with integers.
// Florian Loitsch, PLDI 2010.
extern char* DoubleToCString(double v, char* buffer, int buflen);

} }  // namespace v8::internal

namespace iv {
namespace core {

using v8::internal::DoubleToCString;

} }  // namespace iv::core
#endif  // _IV_DTOA_H_

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
iv-phonic-0.1.8 ext/include/iv/dtoa.h
iv-phonic-0.1.7 ext/include/iv/dtoa.h
iv-phonic-0.1.6 ext/include/iv/dtoa.h
iv-phonic-0.1.5 ext/include/iv/dtoa.h
iv-phonic-0.1.3 ext/include/iv/dtoa.h