| 166 | static char lock[256]; |
| 167 | |
| 168 | void |
| 169 | set_levelfile_name(int lev) |
| 170 | { |
| 171 | char *tf; |
| 172 | |
| 173 | tf = strrchr(lock, '.'); |
| 174 | if (!tf) |
| 175 | tf = lock + strlen(lock); |
| 176 | (void) sprintf(tf, ".%d", lev); |
| 177 | #ifdef VMS |
| 178 | (void) strcat(tf, ";1"); |
| 179 | #endif |
| 180 | } |
| 181 | |
| 182 | int |
| 183 | open_levelfile(int lev) |
no test coverage detected