Lines Matching refs:files
72 char *files[100];
82 /* Put a set of sample files in the target directory */
97 files[i] = malloc(20);
100 /* enumerate and delete small sets of files, one group */
107 /* i will be the number of files we hold */
111 strcpy(files[i], dp->d_name);
114 offset, files[i]);
135 printf("file %s returned\n", files[i]);
143 if (*files[j] == '.') {
144 printf ("skipping %s\n", files[j]);
146 printf("Unlinking file %s\n", files[j]);
147 if (unlink(files[j]) != 0) {