| 39 | } |
| 40 | |
| 41 | std::vector<std::string> tokenize_at(std::string str, char token) |
| 42 | { |
| 43 | std::vector<std::string> tokens; |
| 44 | std::istringstream iss(str); |
| 45 | std::string token_str; |
| 46 | while (std::getline(iss, token_str, token)) |
| 47 | { |
| 48 | tokens.push_back(token_str); |
| 49 | } |
| 50 | |
| 51 | return tokens; |
| 52 | } |
| 53 | |
| 54 | struct xkb_binding_t |
| 55 | { |
no outgoing calls
no test coverage detected