/* 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 */
#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)
}
int
-wordsplit(byte *src, byte **dst, uns max)
+wordsplit(char *src, char **dst, uns max)
{
uns cnt = 0;