URL
https://opencores.org/ocsvn/core_arm/core_arm/trunk
Subversion Repositories core_arm
[/] [core_arm/] [trunk/] [soft/] [sim/] [ti/] [sys.c] - Rev 4
Compare with Previous | Blame | View Log
void sys_bashfilename(char *d,char *s) { unsigned int c; while (c = *s++) { #ifdef NT if (c == '/') c = '\\'; #endif *d++ = c; } *d = 0; } void sys_unbashfilename(char *d,char *s) { unsigned int c; while (c = *s++) { #ifdef NT if (c == '\\') c = '/'; #endif *d++ = c; } *d = 0; }