#define NSTR 25 char **brkstring(strg,brksep,brkterm) /* returns pointer to static table of substring ptrs */ char *strg; char *brksep, *brkterm; { register char c, *bp, *sp; static char *broken[NSTR+1]; /* static array of substring start addresses */ int bi; sp = strg; /* scan string, replacing separators with zeroes */ for (bi=0; bi