Research portable Memory game | Исследовать портируемую игру Память
Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- #include "llm.h"
-
- bool llm_isDigit(const std::string &str) {
- return
- !str.empty() &&
- str.find_first_not_of("0123456789") == std::string::npos;
- }
-
- int llm_strToInt(const std::string &str) {
- return std::stoi(str);
- }
|