Research portable Memory game | Исследовать портируемую игру Память
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
236B

  1. #ifndef llm_HEADER
  2. #define llm_HEADER
  3. #include <string>
  4. bool llm_isDigit(const std::string &str);
  5. bool llm_startsWith(const std::string &str, const std::string &prefix);
  6. int llm_strToInt(const std::string &str);
  7. #endif // llm_HEADER