]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/lib/queue.h
Use the command line utility dropdb instead of the psql command
[bacula/bacula] / bacula / src / lib / queue.h
index e9afef499788b9a66aa312b76cb768ffd5d1fda8..c6cbe1080d7f8b96619c4856aee01450f03767a7 100644 (file)
@@ -1,3 +1,8 @@
+/*
+ *   Version $Id$
+ */
+
+
 /*
    Copyright (C) 2000, 2001, 2002 Kern Sibbald and John Walker
 
 /*  General purpose queue  */
 
 struct b_queue {
-        struct b_queue *qnext,     /* Next item in queue */
-                     *qprev;       /* Previous item in queue */
+       struct b_queue *qnext,     /* Next item in queue */
+                    *qprev;       /* Previous item in queue */
 };
 
 typedef struct b_queue BQUEUE;
 
 /*  Queue functions  */
 
-void    qinsert(BQUEUE *qhead, BQUEUE *object);
+void   qinsert(BQUEUE *qhead, BQUEUE *object);
 BQUEUE *qnext(BQUEUE *qhead, BQUEUE *qitem);
 BQUEUE *qdchain(BQUEUE *qitem);
 BQUEUE *qremove(BQUEUE *qhead);