我的linux历程
linuxGentoo
全部博文(90)
python(1)
2010年(7)
2009年(23)
2008年(60)
adofirst
yl225143
Jevon_ji
hd141283
zxpkyo
yjd333
zxxkevin
sunny312
DrogbaTo
分类: C/C++
2008-09-20 08:29:55
/* * from kernel fs/binfmt_script.c * strip white character at the begin and the end * lynnos@tong-ji.org * 2008-09-19 * */char * stripWhite(char *cmdline){ char *cp = cmdline ; if (cp == NULL || *cp == '\0' ){ return NULL; } int len = strlen(cmdline); cp = cp + len; while (cp > cmdline) { cp--; if ((*cp == ' ') || (*cp == '\t')) *cp = '\0'; else break; } for (cp = cmdline; (*cp == ' ') || (*cp == '\t'); cp++); if (*cp == '\0'){ return NULL; } return cp; }
上一篇:dmidecode package
下一篇:git reference
登录 注册