#include "irrMath.h"
#include "irrString.h"
Go to the source code of this file.
|
| | irr |
| | Everything in the Irrlicht Engine can be found in this namespace.
|
| |
| | irr::core |
| | Basic classes such as vectors, planes, arrays, lists, and so on can be found in this namespace.
|
| |
|
| u32 | irr::core::strtoul10 (const char *in, const char **out=0) |
| | Convert a simple string of base 10 digits into an unsigned 32 bit integer. More...
|
| |
| s32 | irr::core::strtol10 (const char *in, const char **out=0) |
| | Convert a simple string of base 10 digits into a signed 32 bit integer. More...
|
| |
| u32 | irr::core::ctoul16 (char in) |
| | Convert a hex-encoded character to an unsigned integer. More...
|
| |
| u32 | irr::core::strtoul16 (const char *in, const char **out=0) |
| | Convert a simple string of base 16 digits into an unsigned 32 bit integer. More...
|
| |
| u32 | irr::core::strtoul8 (const char *in, const char **out=0) |
| | Convert a simple string of base 8 digits into an unsigned 32 bit integer. More...
|
| |
| u32 | irr::core::strtoul_prefix (const char *in, const char **out=0) |
| | Convert a C-style prefixed string (hex, oct, integer) into an unsigned 32 bit integer. More...
|
| |
| f32 | irr::core::strtof10 (const char *in, const char **out=0) |
| | Converts a sequence of digits into a whole positive floating point value. More...
|
| |
| const char * | irr::core::fast_atof_move (const char *in, f32 &result) |
| | Provides a fast function for converting a string into a float. More...
|
| |
| float | irr::core::fast_atof (const char *floatAsString, const char **out=0) |
| | Convert a string to a floating point number. More...
|
| |
◆ IRR_ATOF_TABLE_SIZE
| #define IRR_ATOF_TABLE_SIZE 17 |