#ifndef _STREXP_H_ #define _STREXP_H_ #include #include /* strexp - expand a string into its substrings by whitespace */ extern char **strexp(char *str, int *n); /* strchrexp - expand a string into fields (c = designator) */ extern char **strchrexp(char *str, char c, int *n); #endif