/************************************************************* * File: lib/argvize.c * Purpose: Part of C runtime library * Author: Phil Bunce (pjb@carmel.com) * Revision History: * 970304 Start of revision history */ #define MAX_AC 100 /** int argvize(av,s) place address of each word in s into the array av */ int argvize(av,s) char *av[]; char *s; { char **pav = av, c; int ac; for (ac=0;ac