summaryrefslogtreecommitdiffstats
path: root/include/signames.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/signames.h')
-rw-r--r--include/signames.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/signames.h b/include/signames.h
new file mode 100644
index 0000000..3f1043a
--- /dev/null
+++ b/include/signames.h
@@ -0,0 +1,12 @@
+/*
+ * No copyright is claimed. This code is in the public domain; do with
+ * it what you wish.
+ */
+#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 */