BFLibC 0.1
C Library
Loading...
Searching...
No Matches
typebfdatetime.h
Go to the documentation of this file.
1
6#ifndef TYPEDATETIME_H
7#define TYPEDATETIME_H
8
9typedef struct {
10 int year; // actual year, not the year - 1900
11 int month; // 1 - 12
12 int day; // 1 - 31
13 int hour; // 0 - 23
14 int minute; // 0 - 59
15 int second; // 0 - 59
17
18#endif // TYPEDATETIME_H
19
Definition typebfdatetime.h:9
int day
Definition typebfdatetime.h:12
int minute
Definition typebfdatetime.h:14
int hour
Definition typebfdatetime.h:13
int month
Definition typebfdatetime.h:11
int year
Definition typebfdatetime.h:10
int second
Definition typebfdatetime.h:15