X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=src%2Futil.h;h=3ef7331df62844667ec2d34608a081acf4aafb9b;hb=0dd25284c30dfdbfeff9a882dd801be8cacd0859;hp=25f6c2aca6bb3a084ef46fbf5e1d2d0b1bc359de;hpb=fe326c477b0b109819653dc2657495f867ff8616;p=novacoin.git diff --git a/src/util.h b/src/util.h index 25f6c2a..3ef7331 100644 --- a/src/util.h +++ b/src/util.h @@ -35,6 +35,8 @@ #include "netbase.h" // for AddTimeData +static const int32_t nOneHour = 60 * 60; +static const int32_t nOneDay = 24 * 60 * 60; static const int64_t COIN = 1000000; static const int64_t CENT = 10000; @@ -278,6 +280,16 @@ inline int32_t strtol(const std::string& str) return strtol(str.c_str(), NULL, 10); } +inline uint32_t strtoul(const char* psz) +{ + return strtoul(psz, NULL, 10); +} + +inline uint32_t strtoul(const std::string& str) +{ + return strtoul(str.c_str(), NULL, 10); +} + inline int atoi(const std::string& str) { return atoi(str.c_str()); @@ -358,7 +370,7 @@ inline int64_t GetPerformanceCounter() inline int64_t GetTimeMillis() { - return (boost::posix_time::ptime(boost::posix_time::microsec_clock::universal_time()) - + return (boost::posix_time::microsec_clock::universal_time() - boost::posix_time::ptime(boost::gregorian::date(1970,1,1))).total_milliseconds(); } @@ -415,6 +427,15 @@ int64_t GetArg(const std::string& strArg, int64_t nDefault); int32_t GetArgInt(const std::string& strArg, int32_t nDefault); /** + * Return 32-bit unsigned integer argument or default value + * + * @param strArg Argument to get (e.g. "-foo") + * @param default (e.g. 1) + * @return command-line argument (0 if invalid number) or default value + */ +uint32_t GetArgUInt(const std::string& strArg, uint32_t nDefault); + +/** * Return boolean argument or default value * * @param strArg Argument to get (e.g. "-foo")