News:

Download Pelles C here: http://www.smorgasbordet.com/pellesc/

Main Menu

basename ext

Started by TimoVJL, April 27, 2012, 09:46:36 PM

Previous topic - Next topic

czerny

This should be a little bit quicker

BOOL PathMatchSpec3(char *fn, char *ext)
{
char *p=fn, *q=ext;
while (*p++);
while (*q++);

while (--q>=ext)
if (*--p != *q) return FALSE;
return (*--p == '.');
}