auxsystem.h /size: 517 b    last modification: 2024-01-16 10:22
1/*
2    See license.txt in the root of this project.
3*/
4
5# ifndef LMT_UTILITIES_SYSTEM_H
6# define LMT_UTILITIES_SYSTEM_H
7
8extern void   aux_quit_the_program      (void);
9
10extern void   aux_set_start_time        (int);
11extern void   aux_set_interrupt_handler (void);
12extern void   aux_get_date_and_time     (int *minutes, int *day, int *month, int *year, int *utc);
13extern double aux_get_current_time      (void);
14extern void   aux_set_run_time          (void);
15extern double aux_get_run_time          (void);
16
17# endif
18