摘要:#include #include #include #include //去除尾部空格 char *rtrim(char *str) { if(str == NULL||*str == '\0') { return str; } int len = strlen(str); char *p=str+len-1; whil...
阅读全文
posted @ 2018-10-31 10:51
posted @ 2018-10-31 10:51
posted @ 2018-10-09 15:42