Due to server problems the website is temporarily offline! Visit http://www.smorgasbordet.com/pellesc/ to download Pelles C.
int copyf(char copyfrom[], char copyto[]){ SHFILEOPSTRUCT fileop; fileop.hwnd = NULL; fileop.wFunc = FO_COPY; fileop.pFrom = copyfrom; fileop.pTo = copyto; fileop.fFlags = FOF_ALLOWUNDO|FOF_NOCONFIRMATION|FOF_NOCONFIRMMKDIR; if( (SHFileOperation(&fileop)) != 0) { return 0; } return 1;}