added fast(er) list to be included (just in header) + small bug fix
[my-code/api.git] / bqs / bqs.c
1 /* bqs.c -- batch queueing system api
2  *
3  * author: hackbard@hackdaworld.dyndns.org
4  *
5  */
6
7 #include "bqs.h"
8
9 int bqs_init(t_bqs *bqs,int outfd) {
10
11   dprintf(outfd,"[bqs] initializing bqs api ...\n");
12
13   bqs->outfd=outfd;
14
15   return B_SUCCESS;
16 }