Research portable Memory game | Исследовать портируемую игру Память
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

11 linhas
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