mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-19 20:24:49 +00:00
16 lines
265 B
C
16 lines
265 B
C
#ifndef _CONSOLFUNCTIONS_H_
|
|
#define _CONSOLFUNCTIONS_H_
|
|
|
|
#ifndef _STRINGFUNCTIONS_H_
|
|
#include "core/strings/stringFunctions.h"
|
|
#endif
|
|
|
|
bool isInt(const char* str);
|
|
|
|
bool isFloat(const char* str);
|
|
|
|
bool isValidIP(const char* ip);
|
|
|
|
bool isValidPort(U16 port);
|
|
|
|
#endif |