X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=lib%2Fwordsplit.c;h=2e50edc16dfd04ce132a08d79890f3b88f5bd88c;hb=c4bf633211b0424492b5a3937d6a6d2e0d79a4cf;hp=d13f21087792fe8774a56be483dafdc678635924;hpb=cad27e97e6370f96903d42aaf345c099af0a03bd;p=libucw.git diff --git a/lib/wordsplit.c b/lib/wordsplit.c index d13f2108..2e50edc1 100644 --- a/lib/wordsplit.c +++ b/lib/wordsplit.c @@ -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;