OILS / _gen / frontend / signal.h View on Github | oils.pub

18 lines, 9 significant
1#ifndef FRONTEND_SIGNAL_H
2#define FRONTEND_SIGNAL_H
3
4#include "mycpp/runtime.h"
5
6namespace signal_def {
7
8const int NO_SIGNAL = -1;
9
10int MaxSigNumber();
11
12int GetNumber(BigStr* sig_spec);
13
14BigStr* GetName(int sig_num);
15
16} // namespace signal_def
17
18#endif // FRONTEND_SIGNAL_H