source: code/trunk/vendor/github.com/valyala/fasthttp/uri_windows.go@ 145

Last change on this file since 145 was 145, checked in by Izuru Yakumo, 22 months ago

Updated the Makefile and vendored depedencies

Signed-off-by: Izuru Yakumo <yakumo.izuru@…>

File size: 232 bytes
Line 
1//go:build windows
2// +build windows
3
4package fasthttp
5
6func addLeadingSlash(dst, src []byte) []byte {
7 // zero length and "C:/" case
8 if len(src) == 0 || (len(src) > 2 && src[1] != ':') {
9 dst = append(dst, '/')
10 }
11
12 return dst
13}
Note: See TracBrowser for help on using the repository browser.