From de40d7c17747988ed4c53e51e45cbb790a3abd7b Mon Sep 17 00:00:00 2001 From: Sebastian Hammer Date: Tue, 20 Feb 1996 16:32:48 +0000 Subject: [PATCH 1/1] Created util file. --- include/data1.h | 7 ++++++- include/yaz-util.h | 18 ++++++++++++++++++ 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 include/yaz-util.h diff --git a/include/data1.h b/include/data1.h index 14de485..e97e8d4 100644 --- a/include/data1.h +++ b/include/data1.h @@ -24,7 +24,10 @@ * OF THIS SOFTWARE. * * $Log: data1.h,v $ - * Revision 1.12 1996-01-18 09:46:34 adam + * Revision 1.13 1996-02-20 16:32:48 quinn + * Created util file. + * + * Revision 1.12 1996/01/18 09:46:34 adam * Changed prototype for reader function parsed to data1_read_record. * * Revision 1.11 1995/12/15 16:19:45 quinn @@ -114,6 +117,8 @@ #include #include +#define data1_matchstr(s1, s2) yaz_matchstr(s1, s2) + extern char *data1_tabpath; /* global path for tables */ #define DATA1_MAX_SYMBOL 31 diff --git a/include/yaz-util.h b/include/yaz-util.h new file mode 100644 index 0000000..94ef3a1 --- /dev/null +++ b/include/yaz-util.h @@ -0,0 +1,18 @@ +/* + * Copyright (c) 1995, Index Data. + * See the file LICENSE for details. + * Sebastian Hammer, Adam Dickmeiss + * + * $Log: yaz-util.h,v $ + * Revision 1.1 1996-02-20 16:32:49 quinn + * Created util file. + * + * + */ + +#ifndef YAZ_UTIL_H +#define YAZ_UTIL_H + +int yaz_matchstr(char *s1, char *s2); + +#endif -- 1.7.10.4