116b047ee3eb96611fb9c9ba39056930dc987b69
[tpg/opendispense2.git] / server / src / itemdb.c
1 /*
2  * OpenDispense 2 
3  * UCC (University [of WA] Computer Club) Electronic Accounting System
4  *
5  * itemdb.c - Dispense Item Databse
6  *
7  * This file is licenced under the 3-clause BSD Licence. See the file COPYING
8  * for full details.
9  */
10 #include <stdlib.h>
11 #include <stdio.h>
12 #include "common.h"
13
14 // === GLOBALS ===
15  int    giNumItems = 0;
16 tItem   *gaItems = NULL;
17 tHandler        *gaHandlers = NULL;
18
19 // === CODE ===

UCC git Repository :: git.ucc.asn.au