]> mj.ucw.cz Git - libucw.git/commitdiff
converted byte ** -> char ** in sepsplit
authorPavel Charvat <pavel.charvat@netcentrum.cz>
Mon, 25 Jun 2007 12:37:27 +0000 (14:37 +0200)
committerPavel Charvat <pavel.charvat@netcentrum.cz>
Mon, 25 Jun 2007 12:37:27 +0000 (14:37 +0200)
lib/lib.h
lib/wordsplit.c

index 6e74b6f57728b66be8be6301a593543e66c0fa8e..51d78974e161d440dd722101a804996467bc7886 100644 (file)
--- a/lib/lib.h
+++ b/lib/lib.h
@@ -164,8 +164,8 @@ int match_ct_patt(const char *, const char *);
 
 /* wordsplit.c */
 
-int sepsplit(byte *str, uns sep, byte **rec, uns max);
-int wordsplit(byte *str, byte **rec, uns max);
+int sepsplit(char *str, uns sep, char **rec, uns max);
+int wordsplit(char *str, char **rec, uns max);
 
 /* pat(i)match.c: Matching of shell patterns */
 
index 70984ab58fbe68e02bc7d90ead4828fb53745cf9..2e50edc16dfd04ce132a08d79890f3b88f5bd88c 100644 (file)
@@ -14,7 +14,7 @@
 #include <string.h>
 
 int
-sepsplit(byte *str, uns 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, uns sep, byte **rec, uns max)
 }
 
 int
-wordsplit(byte *src, byte **dst, uns max)
+wordsplit(char *src, char **dst, uns max)
 {
   uns cnt = 0;