#include "xstimestamp.h"
#include "xstime.h"
#include "xstimeinfo.h"
#include "xsstring.h"
#include <time.h>
#include <string.h>
#include <stdio.h>
Go to the source code of this file.
Functions | |
void | XsTimeStamp_localToUtcTime (struct XsTimeStamp const *thisPtr, struct XsTimeStamp *utc) |
Convert the supplied time from (assumed) local time to UTC, using the system's local time zone knowledge. More... | |
void | XsTimeStamp_localToUtcTime2 (struct XsTimeStamp const *thisPtr, struct XsTimeStamp *utc, const struct XsTimeInfo *info) |
Convert the supplied time from (assumed) local time to UTC, using the offset in info. More... | |
void | XsTimeStamp_localToUtcTime_ms (struct XsTimeStamp const *thisPtr, struct XsTimeStamp *utc, int64_t utcOffset) |
Convert the supplied time from (assumed) local time to UTC, using the offset in utcOffset. More... | |
void | XsTimeStamp_utcToLocalTime (struct XsTimeStamp const *thisPtr, struct XsTimeStamp *local) |
Convert the supplied time from (assumed) UTC to local time, using the system's local time zone knowledge. More... | |
void | XsTimeStamp_utcToLocalTime2 (struct XsTimeStamp const *thisPtr, struct XsTimeStamp *local, const struct XsTimeInfo *info) |
Convert the supplied time from (assumed) UTC to local time, using the offset in info. More... | |
void | XsTimeStamp_utcToLocalTime_ms (struct XsTimeStamp const *thisPtr, struct XsTimeStamp *local, int64_t utcOffset) |
Convert the supplied time from (assumed) UTC to local time, using the offset in utcOffset. More... | |