Réponse acceptée !
void GetFileExtension(char *szFullPath, char *szExt)
{
char *c = szFullPath + strlen(szFullPath);
char *d = szExt;
while(*c != '.')c--;
c++;
while(*c) *d++ = *c++;
*d = 0;
}
int main()
{
char Buff[6];
GetFileExtension("Salut.jpeg", Buff);
printf("%s\n", Buff); //Affiche : jpeg
system("pause");
return 0;
}
ULARGE_INTEGERJokyQi=QI("Joky"