summaryrefslogtreecommitdiff
path: root/source/luametatex/source/utilities/auxsystem.h
blob: 5b9a5bad094a566f65794184776fc583d2cc82ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
    See license.txt in the root of this project.
*/

# ifndef LMT_UTILITIES_SYSTEM_H
# define LMT_UTILITIES_SYSTEM_H

extern void   aux_quit_the_program      (void);

extern void   aux_set_start_time        (int);
extern void   aux_set_interrupt_handler (void);
extern void   aux_get_date_and_time     (int *minutes, int *day, int *month, int *year, int *utc);
extern double aux_get_current_time      (void);
extern void   aux_set_run_time          (void);
extern double aux_get_run_time          (void);

# endif