mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-02-02 11:04:00 +01:00
20 lines
279 B
C
20 lines
279 B
C
|
#ifndef UTIL_H
|
||
|
#define UTIL_H
|
||
|
|
||
|
#include <map>
|
||
|
#include <string>
|
||
|
|
||
|
namespace i2p
|
||
|
{
|
||
|
namespace util
|
||
|
{
|
||
|
extern std::map<std::string, std::string> mapArgs;
|
||
|
void ParseArguments(int argc, const char* const argv[]);
|
||
|
int GetIntArg(const std::string& strArg, int nDefault);
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
#endif
|