mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
399 B
C
15 lines
399 B
C
|
8 years ago
|
//
|
||
|
|
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
// These NSTimeInterval constants provide simplified durations for readability.
|
||
|
|
#define kMinuteInterval 60
|
||
|
|
#define kHourInterval (60 * kMinuteInterval)
|
||
|
|
#define kDayInterval (24 * kHourInterval)
|
||
|
|
#define kWeekInterval (7 * kDayInterval)
|
||
|
|
#define kMonthInterval (30 * kDayInterval)
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|