CSPP 51086: Unix Systems Programming

char ***argvp: Pointer to argv, an array of strings char *delimiter: String of delimiters, these are used to separate cmdinto words. For the basic module in Problem I, ignore this argument, and use white space to separate cmdinto words. Return: makeargvbuilds an array of words separated by white space. The end of the array is set to NULL. There ... ................
................