]> git.meshlink.io Git - catta/blobdiff - tests/utf8-test.c
rename everything avahi to catta
[catta] / tests / utf8-test.c
index 3ef0af3c9d2e534a8b03ed9ed0d90f3dd3371172..e3c1e489b49a67a852b9e753656948c2fda3e490 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 <assert.h>
 
-#include <avahi/gccmacro.h>
+#include <catta/gccmacro.h>
 
 #include "../src/utf8.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[]) {
 
-    assert(avahi_utf8_valid("hallo"));
-    assert(!avahi_utf8_valid("üxknürz"));
-    assert(avahi_utf8_valid("üxknürz"));
+    assert(catta_utf8_valid("hallo"));
+    assert(!catta_utf8_valid("üxknürz"));
+    assert(catta_utf8_valid("üxknürz"));
 
     return 0;
 }