Function percentDecodeInPlace [src]
Percent decodes all %XX where XX is a valid hex number.
Mutates and returns a subslice of buffer.
Prototype
pub fn percentDecodeInPlace(buffer: []u8) []u8
Parameters
buffer: []u8
Source
pub fn percentDecodeInPlace(buffer: []u8) []u8 {
return percentDecodeBackwards(buffer, buffer);
}