* Functions to get filenames using wildcards */
| 144 | * Functions to get filenames using wildcards |
| 145 | */ |
| 146 | int |
| 147 | findfirst(char *path) |
| 148 | { |
| 149 | if (ffhandle) { |
| 150 | FindClose(ffhandle); |
| 151 | ffhandle = (HANDLE) 0; |
| 152 | } |
| 153 | ffhandle = FindFirstFile(path, &ffd); |
| 154 | return (ffhandle == INVALID_HANDLE_VALUE) ? 0 : 1; |
| 155 | } |
| 156 | |
| 157 | int |
| 158 | findnext(void) |
no outgoing calls
no test coverage detected