]> mj.ucw.cz Git - libucw.git/blobdiff - lib/wordsplit.c
Use `char *' instead of `byte *' for strings
[libucw.git] / lib / wordsplit.c
index 1a488f2e68d305e88424626eba549c753788ab61..70984ab58fbe68e02bc7d90ead4828fb53745cf9 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>
@@ -14,7 +14,7 @@
 #include <string.h>
 
 int
-sepsplit(byte *str, byte sep, byte **rec, uns max)
+sepsplit(byte *str, uns sep, byte **rec, uns max)
 {
   uns cnt = 0;
   while (1)