Added some process control functions to libht.
[ashd.git] / lib / proc.h
diff --git a/lib/proc.h b/lib/proc.h
new file mode 100644 (file)
index 0000000..943e598
--- /dev/null
@@ -0,0 +1,8 @@
+#ifndef _LIB_PROC_H
+#define _LIB_PROC_H
+
+int stdmkchild(char **argv);
+int sendfd(int sock, int fd, char *data, size_t datalen);
+int recvfd(int sock, char **data, size_t *datalen);
+
+#endif