void ReverseStr(char *psz) { char *c = psz, a; while(*c) c++; // POUSSE c A LA FIN DE psz while(psz < --c) {a = *psz; *psz++ = *c; *c = a;} }