X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;ds=inline;f=lib%2Fwordsplit.c;h=2e50edc16dfd04ce132a08d79890f3b88f5bd88c;hb=ed4e86de76d1c3bfb685207fe00078950f67355a;hp=1a488f2e68d305e88424626eba549c753788ab61;hpb=4d8d2943da06f65f953549e10a59a59300f90959;p=libucw.git diff --git a/lib/wordsplit.c b/lib/wordsplit.c index 1a488f2e..2e50edc1 100644 --- a/lib/wordsplit.c +++ b/lib/wordsplit.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Word Splitting + * UCW Library -- Word Splitting * * (c) 1997 Martin Mares * (c) 2004 Robert Spalek @@ -14,7 +14,7 @@ #include int -sepsplit(byte *str, byte sep, byte **rec, uns max) +sepsplit(char *str, uns sep, char **rec, uns max) { uns cnt = 0; while (1) @@ -30,7 +30,7 @@ sepsplit(byte *str, byte sep, byte **rec, uns max) } int -wordsplit(byte *src, byte **dst, uns max) +wordsplit(char *src, char **dst, uns max) { uns cnt = 0;