dish/loop.h
iridiumR f99caf42f3
feat(signal): change the behaviour of SIGINT
In previous versions, when a SIGINT was received, the program would exit
if there were no child processes, now the behavior is changed to not
exit and start a new line.
2022-09-20 22:29:59 +08:00

12 lines
No EOL
235 B
C

/*
* @Author: 1ridic
* @Date: 2022-09-18 14:14:19
* @Last Modified by: 1ridic
* @Last Modified time: 2022-09-20 22:24:24
*/
#ifndef _LOOP_H_
#define _LOOP_H_
#include "config.h"
void SIGINT_Handler(int dummy);
int loop();
#endif