mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 11:43:49 +00:00
initial port of the new interpreter
This commit is contained in:
parent
5d2654b1ba
commit
35500a87c6
47 changed files with 3675 additions and 5839 deletions
|
|
@ -200,6 +200,11 @@ inline F64 dAtod(const char *str)
|
|||
return strtod(str, NULL);
|
||||
}
|
||||
|
||||
inline S64 dAtol(const char* str)
|
||||
{
|
||||
return strtol(str, NULL, 10);
|
||||
}
|
||||
|
||||
inline char dToupper(const char c)
|
||||
{
|
||||
return toupper( c );
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue