| 129 | fs::path AbsPathForConfigVal(const fs::path& path, bool net_specific = true); |
| 130 | |
| 131 | inline bool IsSwitchChar(char c) |
| 132 | { |
| 133 | #ifdef WIN32 |
| 134 | return c == '-' || c == '/'; |
| 135 | #else |
| 136 | return c == '-'; |
| 137 | #endif |
| 138 | } |
| 139 | |
| 140 | enum class OptionsCategory { |
| 141 | OPTIONS, |
no outgoing calls