OpenCores
URL https://opencores.org/ocsvn/core_arm/core_arm/trunk

Subversion Repositories core_arm

[/] [core_arm/] [trunk/] [soft/] [sim/] [ti/] [sys.c] - Rev 2

Go to most recent revision | 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;
}
 

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2025 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.