Created util file.
authorSebastian Hammer <quinn@indexdata.com>
Tue, 20 Feb 1996 16:32:48 +0000 (16:32 +0000)
committerSebastian Hammer <quinn@indexdata.com>
Tue, 20 Feb 1996 16:32:48 +0000 (16:32 +0000)
include/data1.h
include/yaz-util.h [new file with mode: 0644]

index 14de485..e97e8d4 100644 (file)
  * OF THIS SOFTWARE.
  *
  * $Log: data1.h,v $
  * 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
  * Changed prototype for reader function parsed to data1_read_record.
  *
  * Revision 1.11  1995/12/15  16:19:45  quinn
 #include <d1_attset.h>
 #include <d1_map.h>
 
 #include <d1_attset.h>
 #include <d1_map.h>
 
+#define data1_matchstr(s1, s2) yaz_matchstr(s1, s2)
+
 extern char *data1_tabpath; /* global path for tables */
 
 #define DATA1_MAX_SYMBOL 31
 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 (file)
index 0000000..94ef3a1
--- /dev/null
@@ -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