| 22 | #include <string> |
| 23 | |
| 24 | inline std::string concat_kernel(const char *sstr[], int num) |
| 25 | { |
| 26 | std::string res; |
| 27 | for (int i = 0; i < num; i++) res += std::string(sstr[i]); |
| 28 | return res; |
| 29 | } |
| 30 | |
| 31 | template <typename... Args> |
| 32 | inline std::string str_sprintf(const std::string &str, Args... args) |
no outgoing calls