| 3379 | } |
| 3380 | |
| 3381 | char *f_name_buf(void) |
| 3382 | { |
| 3383 | static char names[5][MAXPATHLEN]; |
| 3384 | static unsigned int n; |
| 3385 | |
| 3386 | n = (n + 1) % (sizeof names / sizeof names[0]); |
| 3387 | |
| 3388 | return names[n]; |
| 3389 | } |
| 3390 | |
| 3391 | /* Return a copy of the full filename of a flist entry, using the indicated |
| 3392 | * buffer or one of 5 static buffers if fbuf is NULL. No size-checking is |
no outgoing calls
no test coverage detected