| 524 | } |
| 525 | |
| 526 | size_t V_URLDecodeNoPlusForSpace( char *pchDecodeDest, int nDecodeDestLen, const char *pchEncodedSource, int nEncodedSourceLen ) |
| 527 | { |
| 528 | return V_URLDecodeInternal( pchDecodeDest, nDecodeDestLen, pchEncodedSource, nEncodedSourceLen, false ); |
| 529 | } |
| 530 | |
| 531 | //----------------------------------------------------------------------------- |
| 532 | void V_StripExtension( std::string &in ) |
no test coverage detected