]> git.meshlink.io Git - catta/blobdiff - tests/timeval-test.c
rename everything avahi to catta
[catta] / tests / timeval-test.c
index 461b97f54ac929bd5982a492ce50c54f3af6f12e..75f50d4e3a77db81e4bfadc6b5a8234e3ed40507 100644 (file)
@@ -1,18 +1,18 @@
 /***
-  This file is part of avahi.
+  This file is part of catta.
 
-  avahi is free software; you can redistribute it and/or modify it
+  catta is free software; you can redistribute it and/or modify it
   under the terms of the GNU Lesser General Public License as
   published by the Free Software Foundation; either version 2.1 of the
   License, or (at your option) any later version.
 
-  avahi is distributed in the hope that it will be useful, but WITHOUT
+  catta is distributed in the hope that it will be useful, but WITHOUT
   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
   or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
   Public License for more details.
 
   You should have received a copy of the GNU Lesser General Public
-  License along with avahi; if not, write to the Free Software
+  License along with catta; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
   USA.
 ***/
 
 #include <stdio.h>
 
-#include <avahi/gccmacro.h>
-#include <avahi/timeval.h>
+#include <catta/gccmacro.h>
+#include <catta/timeval.h>
 
-int main(AVAHI_GCC_UNUSED int argc, AVAHI_GCC_UNUSED char *argv[]) {
+int main(CATTA_GCC_UNUSED int argc, CATTA_GCC_UNUSED char *argv[]) {
 
     struct timeval a = { 5, 5 }, b;
 
     b = a;
 
     printf("%li.%li\n", a.tv_sec, a.tv_usec);
-    avahi_timeval_add(&a, -50);
+    catta_timeval_add(&a, -50);
 
     printf("%li.%li\n", a.tv_sec, a.tv_usec);
 
-    printf("%lli\n", (long long) avahi_timeval_diff(&a, &b));
+    printf("%lli\n", (long long) catta_timeval_diff(&a, &b));
 
     return 0;
 }