consoleFunctions.h
Engine/source/console/consoleFunctions.h
Public Functions
Detailed Description
Public Functions
isFloat(const char * str)
isInt(const char * str)
isValidIP(const char * ip)
isValidPort(U16 port)
1 2#ifndef _CONSOLFUNCTIONS_H_ 3#define _CONSOLFUNCTIONS_H_ 4 5#ifndef _STRINGFUNCTIONS_H_ 6#include "core/strings/stringFunctions.h" 7#endif 8 9bool isInt(const char* str); 10 11bool isFloat(const char* str); 12 13bool isValidIP(const char* ip); 14 15bool isValidPort(U16 port); 16 17#endif 18