--- In [email protected], sgp <[EMAIL PROTECTED]> wrote: > > brucexs wrote: > > > static void RemoveNonFileChars(unsigned char* sz) > > { > > while(*sz) > > { > > if (*sz=='*') > > *sz = '+'; > > else if (*sz !='!' && strchr(vNoFileNameChars, *sz) > >||*sz<' ') > > *sz = '_'; > > sz++; > > } > > } > > Thank you Bruce! > However, something's missing from above near else if...
I dont know what you mean. Anyway, it should be obvious what the code is doing.
