Design Pattern Examples
Overview of object-oriented design patterns
helpers/makelocaltime.h
Go to the documentation of this file.
1
5
6#pragma once
7#ifndef __MAKELOCALTIME_H__
8#define __MAKELOCALTIME_H__
9
10#include <time.h>
11
30struct tm* makelocaltime(const time_t* time, struct tm* timestruct);
31
32#endif // __MAKELOCALTIME_H__
33
struct tm * makelocaltime(const time_t *time, struct tm *timestruct)
Convert the given time to local time.
Definition: makelocaltime.c:13