/* LISTER: a subfunction to link to recursive main for listing wildcard file matches. */ #include <stdio.h> void subfunc(char *path) { printf("\n%s", path); } /* End of File */