fname: 'foo.bar' path: 'tmp/dir/other.file' returned dst: 'tmp/dir/foo.bar'
| 244 | // path: 'tmp/dir/other.file' |
| 245 | // returned dst: 'tmp/dir/foo.bar' |
| 246 | static void _reconstruct_path(char *dst, char *path, char *fname) |
| 247 | { |
| 248 | _strcpy_dirname(dst, path); |
| 249 | strcat(dst + strlen(dst), fname); |
| 250 | } |
| 251 | |
| 252 | static void _compactor_get_vfilename(char *filename, char *vfilename) |
| 253 | { |
no test coverage detected