diff options
Diffstat (limited to 'include/signames.h')
-rw-r--r-- | include/signames.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/signames.h b/include/signames.h new file mode 100644 index 0000000..a4fd1bc --- /dev/null +++ b/include/signames.h @@ -0,0 +1,8 @@ +#ifndef SIGNAMES_H +#define SIGNAMES_H + +int signame_to_signum(const char *sig); +const char *signum_to_signame(int signum); +int get_signame_by_idx(size_t idx, const char **signame, int *signum); + +#endif /* SIGNAMES_H */ |