Bump year
[yazpp-moved-to-github.git] / src / tstquery.cpp
index 16cfe0a..475ff33 100644 (file)
@@ -1,10 +1,11 @@
-/*
- * Copyright (c) 1998-2005, Index Data.
+/* This file is part of the yazpp toolkit.
+ * Copyright (C) 1998-2013 Index Data and Mike Taylor
  * See the file LICENSE for details.
- * 
- * $Id: tstquery.cpp,v 1.2 2006-03-29 13:14:15 adam Exp $
  */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <stdlib.h>
 #include <yazpp/z-query.h>
 
@@ -34,14 +35,16 @@ void tst1(const char *query_str_in, const char *query_expected)
 int main(int argc, char **argv)
 {
     tst1("", "");
-    tst1("x", "RPN: @attrset Bib-1 x");
-    tst1("@and a b", "RPN: @attrset Bib-1 @and a b");
+    tst1("x", "RPN @attrset Bib-1 x");
+    tst1("@and a b", "RPN @attrset Bib-1 @and a b");
 }
 
 /*
  * Local variables:
  * c-basic-offset: 4
+ * c-file-style: "Stroustrup"
  * indent-tabs-mode: nil
  * End:
  * vim: shiftwidth=4 tabstop=8 expandtab
  */
+