c276d4df1ec6d063d4734212b2565fffd6f633a8
[idzebra-moved-to-github.git] / test / api / t1.c
1 /*
2  * $Id: t1.c,v 1.1 2002-02-20 17:30:02 adam Exp $
3  */
4
5 #include <zebraapi.h>
6
7 int main(int argc, char **argv)
8 {
9     ZebraService zs;
10     ZebraHandle zh;
11
12     nmem_init();
13     zs = zebra_start("t1.cfg");
14     zh = zebra_open (zs);
15     
16     zebra_close (zh);
17     zebra_stop (zs);
18     nmem_exit ();
19     xmalloc_trav ("x");
20     exit (0);
21 }