X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=dict%2Fdicttest.c;h=dbebc8d0c00545196666a856788911af693a780f;hp=0138e2c38035c5292f63e727f904407b5f715097;hb=ecb3935e78cd9bcfdebafdee0834cfb1060d7b5e;hpb=05b9b8ed020c5bfa48a913d6a2e2b50ddf1bab8e diff --git a/dict/dicttest.c b/dict/dicttest.c index 0138e2c..dbebc8d 100644 --- a/dict/dicttest.c +++ b/dict/dicttest.c @@ -1,6 +1,6 @@ -/* $Id: dicttest.c,v 1.31 2004-12-08 12:23:08 adam Exp $ - Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002 - Index Data Aps +/* $Id: dicttest.c,v 1.36 2006-05-10 08:13:18 adam Exp $ + Copyright (C) 1995-2005 + Index Data ApS This file is part of the Zebra server. @@ -26,7 +26,9 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA #include #include -#include +#include +#include +#include char *prog; static Dict dict; @@ -158,12 +160,14 @@ int main (int argc, char **argv) yaz_log (YLOG_FATAL, "no config and/or dictionary specified"); exit (1); } - my_resource = res_open (config, 0, 0); + my_resource = res_open(0, 0); if (!my_resource) { yaz_log (YLOG_FATAL, "cannot open resource `%s'", config); exit (1); } + res_read_file(my_resource, config); + bfs = bfs_create (res_get(my_resource, "register"), 0); if (!bfs) { @@ -315,3 +319,11 @@ int main (int argc, char **argv) res_close (my_resource); return 0; } +/* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + * vim: shiftwidth=4 tabstop=8 expandtab + */ +