added bqs api entry
[my-code/api.git] / bqs / bqs.h
diff --git a/bqs/bqs.h b/bqs/bqs.h
new file mode 100644 (file)
index 0000000..d0d8454
--- /dev/null
+++ b/bqs/bqs.h
@@ -0,0 +1,22 @@
+/* bqs.h -- batch queueing system headers */
+
+#ifndef BQS_H
+#define BQS_H
+
+/* includes */
+#define _GNU_SOURCE
+#include <stdio.h>
+#include <string.h>
+#include <stdlib.h>
+
+/* defines */
+#define B_SUCCESS 1
+#define B_ERROR -1
+
+/* bqs specific variables */
+typedef struct s_bqs {
+  int outfd;
+
+} t_bqs;
+
+#endif