added bqs api entry
[my-code/api.git] / bqs / bqs.c
diff --git a/bqs/bqs.c b/bqs/bqs.c
new file mode 100644 (file)
index 0000000..7ee7bc9
--- /dev/null
+++ b/bqs/bqs.c
@@ -0,0 +1,16 @@
+/* bqs.c -- batch queueing system api
+ *
+ * author: hackbard@hackdaworld.dyndns.org
+ *
+ */
+
+#include "bqs.h"
+
+int bqs_init(t_bqs *bqs,int outfd) {
+
+  dprintf(outfd,"[bqs] initializing bqs api ...\n");
+
+  bqs->outfd=outfd;
+
+  return B_SUCCESS;
+}