Complete XML to OPAC conversion
[yaz-moved-to-github.git] / include / yaz / timing.h
index 66d82a7..d493cf1 100644 (file)
@@ -1,5 +1,5 @@
 /* This file is part of the YAZ toolkit.
- * Copyright (C) 1995-2012 Index Data.
+ * Copyright (C) 1995-2013 Index Data.
  * All rights reserved.
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions are met:
@@ -51,7 +51,7 @@ typedef struct yaz_timing *yaz_timing_t;
     do_work();
     yaz_timing_stop(my);
 
-    printf("real=%g user=%g sys=%g\n", 
+    printf("real=%g user=%g sys=%g\n",
        yaz_timing_get_real(my),
        yaz_timing_get_user(my),
        yaz_timing_get_sys(my));
@@ -71,7 +71,7 @@ void yaz_timing_start(yaz_timing_t t);
 
 /** \brief stop timer
     \param t timing handle
-    
+
     Use yaz_timing_get_real, yaz_timing_get_user and yaz_timing_get_sys
     to fetch timing results.
 */