| 412 | } |
| 413 | |
| 414 | void V_AllocAndSplitString( const char *pString, const char *pSeparator, CUtlVector<char*> &outStrings, bool bIncludeEmptyStrings ) |
| 415 | { |
| 416 | V_SplitString2( pString, &pSeparator, 1, outStrings, bIncludeEmptyStrings ); |
| 417 | } |
| 418 | |
| 419 | //----------------------------------------------------------------------------- |
| 420 | void V_StripTrailingWhitespaceASCII( char *pch ) |
no test coverage detected