Subversion Repositories SvarDOS

Compare Revisions

Ignore whitespace Rev 251 → Rev 252

/pkginst/helpers.c
120,15 → 120,6
}
 
 
/* change all \ to / in a string */
void backslash2slash(char *str) {
int x;
for (x = 0; str[x] != 0; x++) {
if (str[x] == '\\') str[x] = '/';
}
}
 
 
void removeDoubleBackslashes(char *str) {
char *curpos;
int x;