Link SSL with libyaz.la and yaz-client only.
[yaz-moved-to-github.git] / src / matchstr.c
index b3faae7..b078150 100644 (file)
@@ -1,8 +1,6 @@
-/*
- * Copyright (C) 1995-2005, Index Data ApS
+/* This file is part of the YAZ toolkit.
+ * Copyright (C) 1995-2008 Index Data
  * See the file LICENSE for details.
- *
- * $Id: matchstr.c,v 1.5 2005-06-25 15:46:04 adam Exp $
  */
 
 /**
 #include <string.h>
 #include <yaz/yaz-util.h>
 
-/*
- * Match strings, independently of case and occurences of '-'.
- * fairly inefficient - will be replaced with an indexing scheme for
- * the various subsystems if we get a bottleneck here.
- */
-
 int yaz_matchstr(const char *s1, const char *s2)
 {
     while (*s1 && *s2)