X-Git-Url: http://git.meshlink.io/?p=catta;a=blobdiff_plain;f=tests%2Futf8-test.c;h=e3c1e489b49a67a852b9e753656948c2fda3e490;hp=3ef0af3c9d2e534a8b03ed9ed0d90f3dd3371172;hb=2c550daf4ac6a6aab7f21047c037b4dd53c57fa6;hpb=37d19f15523b6fe4d1fef2329abe421221b3d4b3 diff --git a/tests/utf8-test.c b/tests/utf8-test.c index 3ef0af3..e3c1e48 100644 --- a/tests/utf8-test.c +++ b/tests/utf8-test.c @@ -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. ***/ @@ -23,15 +23,15 @@ #include -#include +#include #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; }