Menu

[r336]: / trunk / php-java-bridge / php_java_strtod.h  Maximize  Restore  History

Download this file

19 lines (15 with data), 328 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
#ifndef JAVA_STRTOD_H
#define JAVA_STRTOD_H
#ifndef ZEND_ENGINE_2
extern double EXT_GLOBAL(strtod)(const char*, char**);
#else
#include "zend_strtod.h"
# if EXTENSION == JAVA
# define java_strtod zend_strtod
# elif EXTENSION == MONO
# define mono_strtod zend_strtod
# else
# error unknown EXTENSION
# endif
#endif
#endif