| 44 | #endif /* ACCESS_CONTROL_UNIT_TEST */ |
| 45 | |
| 46 | int |
| 47 | string2int(const StringView &s) |
| 48 | { |
| 49 | int t = 0; |
| 50 | try { |
| 51 | t = std::stoi(String(s)); |
| 52 | } catch (...) { |
| 53 | /* Failed to convert return impossible value */ |
| 54 | return 0; |
| 55 | } |
| 56 | return t; |
| 57 | } |
| 58 | |
| 59 | time_t |
| 60 | string2time(const StringView &s) |