| 729 | #endif |
| 730 | |
| 731 | char *gen_local_filename(const char *filename) |
| 732 | { |
| 733 | const int l=strlen(filename); |
| 734 | char *dst=(char *)MALLOC(l+1); |
| 735 | filename_convert(dst, filename, l); |
| 736 | #if defined(DJGPP) || defined(__CYGWIN__) || defined(__MINGW32__) |
| 737 | if(filename[0]!='\0' && filename[1]==':') |
| 738 | dst[1]=':'; |
| 739 | #endif |
| 740 | return dst; |
| 741 | } |
| 742 | |
| 743 | char *mkdir_local(const char *localroot, const char *pathname) |
| 744 | { |
no test coverage detected