]> mj.ucw.cz Git - libucw.git/blobdiff - lib/wordsplit.c
Merge with git+ssh://git.ucw.cz/projects/sherlock/GIT/sherlock.git
[libucw.git] / lib / wordsplit.c
index d13f21087792fe8774a56be483dafdc678635924..2e50edc16dfd04ce132a08d79890f3b88f5bd88c 100644 (file)
@@ -14,7 +14,7 @@
 #include <string.h>
 
 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;