Functions | |
| char * | fast_atof_move (char *c, float &out) |
| const char * | fast_atof_move_const (const char *c, float &out) |
| float | fast_atof (const char *c) |
Variables | |
| const float | fast_atof_table [] |
|
||||||||||||
|
Provides a fast function for converting a string into a float, about 6 times faster than atof in win32. Definition at line 37 of file fast_atof.h. References fast_atof_table. |
|
||||||||||||
|
Provides a fast function for converting a string into a float, about 6 times faster than atof in win32. Definition at line 82 of file fast_atof.h. References fast_atof_table. Referenced by fast_atof(). |
|
|
Initial value: {
0.f,
0.1f,
0.01f,
0.001f,
0.0001f,
0.00001f,
0.000001f,
0.0000001f,
0.00000001f,
0.000000001f,
0.0000000001f,
0.00000000001f,
0.000000000001f,
0.0000000000001f,
0.00000000000001f,
0.000000000000001f
}
Definition at line 16 of file fast_atof.h. Referenced by fast_atof_move(), and fast_atof_move_const(). |
1.4.6-NO