]> git.saurik.com Git - apple/system_cmds.git/blob - CPPUtil/UtilTime.hpp
system_cmds-643.30.1.tar.gz
[apple/system_cmds.git] / CPPUtil / UtilTime.hpp
1 //
2 // UtilTime.hpp
3 // CPPUtil
4 //
5 // Created by James McIlree on 4/14/13.
6 // Copyright (c) 2013 Apple. All rights reserved.
7 //
8
9 #ifndef CPPUtil_UtilTime_hpp
10 #define CPPUtil_UtilTime_hpp
11
12 static const uint64_t NANOSECONDS_PER_MICROSECOND = 1000ULL;
13 static const uint64_t NANOSECONDS_PER_MILLISECOND = 1000000ULL;
14 static const uint64_t NANOSECONDS_PER_SECOND = 1000000000ULL;
15
16 static const uint64_t MICROSECONDS_PER_MILLISECOND = 1000ULL;
17 static const uint64_t MICROSECONDS_PER_SECOND = 1000000ULL;
18
19 static const uint64_t MILLISECONDS_PER_SECOND = 1000ULL;
20
21 #endif