23 lines
528 B
C
23 lines
528 B
C
/**
|
|
* Copyright (c) 2026 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#pragma once
|
|
#include "dusk.h"
|
|
|
|
/**
|
|
* Returns the real current time, in seconds since January 1, 1970.
|
|
*
|
|
* @return The real current time, in seconds since January 1, 1970.
|
|
*/
|
|
double_t timeGetRealDolphin(void);
|
|
|
|
/**
|
|
* Returns the real time zone offset in seconds from UTC.
|
|
*
|
|
* @return The real time zone offset in seconds from UTC.
|
|
*/
|
|
double_t timeGetRealTimeZoneDolphin(void); |