e9c3efb561b4ee0530722dcb8a7239bf51d6a80b
[idzebra-moved-to-github.git] / test / api / t2.c
1 /* $Id: t2.c,v 1.3 2002-08-02 19:26:57 adam Exp $
2    Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002
3    Index Data Aps
4
5 This file is part of the Zebra server.
6
7 Zebra is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
11
12 Zebra is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with Zebra; see the file LICENSE.zebra.  If not, write to the
19 Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA.
21 */
22
23
24
25 #include <zebraapi.h>
26
27 int main(int argc, char **argv)
28 {
29     ZebraService zs;
30     ZebraHandle zh;
31     const char *myrec =
32         "<gils>\n"
33         "  <title>My title</title>\n"
34         "</gils>\n";
35     ODR odr_input, odr_output;
36
37     nmem_init ();
38
39     odr_input = odr_createmem (ODR_DECODE);    
40     odr_output = odr_createmem (ODR_ENCODE);    
41     
42     zs = zebra_start("t2.cfg");
43     zh = zebra_open (zs);
44     
45     zebra_begin_trans (zh);
46     zebra_record_insert (zh, myrec, strlen(myrec));
47     zebra_end_trans (zh);
48     zebra_commit (zh);
49     zebra_close (zh);
50     zebra_stop (zs);
51
52     odr_destroy (odr_input);
53     odr_destroy (odr_output);
54
55     nmem_exit ();
56     xmalloc_trav ("x");
57     exit (0);
58 }