Due to server problems the website is temporarily offline! Visit http://www.smorgasbordet.com/pellesc/ to download Pelles C.
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 == '.');}