first steps
This commit is contained in:
parent
f71f90ed6d
commit
4e8d48b4ae
26
src/main.c
Normal file
26
src/main.c
Normal file
@ -0,0 +1,26 @@
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
|
||||
struct datetime_t {
|
||||
int year;
|
||||
int month;
|
||||
int day;
|
||||
int hour;
|
||||
int minute;
|
||||
int second;
|
||||
};
|
||||
|
||||
struct errorLogEntry_t {
|
||||
struct datetime_t datetime;
|
||||
char level;
|
||||
int process_id;
|
||||
int state_id;
|
||||
char *connection_id_message;
|
||||
};
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
|
||||
return 0;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user