Skip to content
Snippets Groups Projects
Commit 71809383 authored by rswindell's avatar rswindell
Browse files

Utilized new BACKSLASH macro.

parent 0b377649
Branches
Tags
No related merge requests found
......@@ -155,7 +155,9 @@ void backslash(char *str)
i=strlen(str);
if(i && str[i-1]!='\\' && str[i-1]!='/') {
str[i]='\\'; str[i+1]=0; }
str[i]=BACKSLASH;
str[i+1]=0;
}
}
/****************************************************************************/
......@@ -167,7 +169,9 @@ void backslashcolon(char *str)
i=strlen(str);
if(i && str[i-1]!='\\' && str[i-1]!='/' && str[i-1]!=':') {
str[i]='\\'; str[i+1]=0; }
str[i]=BACKSLASH;
str[i+1]=0;
}
}
/****************************************************************************/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment