consoleFunctions.h 265 B

12345678910111213141516
  1. #ifndef _CONSOLFUNCTIONS_H_
  2. #define _CONSOLFUNCTIONS_H_
  3. #ifndef _STRINGFUNCTIONS_H_
  4. #include "core/strings/stringFunctions.h"
  5. #endif
  6. bool isInt(const char* str);
  7. bool isFloat(const char* str);
  8. bool isValidIP(const char* ip);
  9. bool isValidPort(U16 port);
  10. #endif