Research portable Memory game | Исследовать портируемую игру Память
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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