mse/src/main.h

22 lines
379 B
C
Raw Normal View History

2022-02-08 14:11:56 -05:00
/*
** main.h
**
** This file is part of mse, under GPLv3.
*/
#ifndef __MAIN_H
#define __MAIN_H
int main(int argc, char *argv[]);
void error(int coredump, char *msg);
void initialize(int argc, char *argv[]);
int intrpt(void);
void int_hdlr(int sig);
void hup_hdlr(int sig);
void stop_hdlr(int sig);
void hangup(void);
void print_verbose_err_msg(void);
void usage(void);
#endif