周星驰: 不错,还有木有? [阅读: 369] 2005-11-02 03:11:31 size_t StrLen( const char *pStr ) { if ( !pStr[0] ) return 0; else return ( StrLen( pStr + 1 ) + 1 ); }