]> 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 1a488f2e68d305e88424626eba549c753788ab61..2e50edc16dfd04ce132a08d79890f3b88f5bd88c 100644 (file)
@@ -1,5 +1,5 @@
 /*
 /*
- *     Sherlock Library -- Word Splitting
+ *     UCW Library -- Word Splitting
  *
  *     (c) 1997 Martin Mares <mj@ucw.cz>
  *     (c) 2004 Robert Spalek <robert@ucw.cz>
  *
  *     (c) 1997 Martin Mares <mj@ucw.cz>
  *     (c) 2004 Robert Spalek <robert@ucw.cz>
@@ -14,7 +14,7 @@
 #include <string.h>
 
 int
 #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)
 {
   uns cnt = 0;
   while (1)
@@ -30,7 +30,7 @@ sepsplit(byte *str, byte sep, byte **rec, uns max)
 }
 
 int
 }
 
 int
-wordsplit(byte *src, byte **dst, uns max)
+wordsplit(char *src, char **dst, uns max)
 {
   uns cnt = 0;
 
 {
   uns cnt = 0;