| 506 | } |
| 507 | |
| 508 | void V_URLEncodeFullPath( char *pchDest, int nDestLen, const char *pchSource, int nSourceLen ) |
| 509 | { |
| 510 | return V_URLEncodeInternal( pchDest, nDestLen, pchSource, nSourceLen, false, CharNeedsEscape_FullPath ); |
| 511 | } |
| 512 | |
| 513 | //----------------------------------------------------------------------------- |
| 514 | // Purpose: Decodes a string (or binary data) from URL encoding format, see rfc1738 section 2.2. |
no test coverage detected