int rTrim(char *szBuf) { int i; i = strlen(szBuf)-1; while(szBuf[i] == ' '&&i >0) i--; szBuf[i+1] = '\0'; return0; }