about summary refs log tree commit diff
path: root/csrc/ps.h
diff options
context:
space:
mode:
Diffstat (limited to 'csrc/ps.h')
-rw-r--r--csrc/ps.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/csrc/ps.h b/csrc/ps.h
new file mode 100644
index 0000000..24839f3
--- /dev/null
+++ b/csrc/ps.h
@@ -0,0 +1,12 @@
+#ifndef __PS_H__
+#define __PS_H__
+
+typedef enum {
+  PS_OK,
+  PS_ERR,
+} ps_status_t;
+
+void print_process_info(const char *pid);
+ps_status_t ps();
+
+#endif