mirror of
https://github.com/go-gitea/gitea
synced 2024-11-02 08:14:25 +00:00
13 lines
255 B
Go
13 lines
255 B
Go
|
package denco
|
||
|
|
||
|
// NextSeparator returns an index of next separator in path.
|
||
|
func NextSeparator(path string, start int) int {
|
||
|
for start < len(path) {
|
||
|
if c := path[start]; c == '/' || c == TerminationCharacter {
|
||
|
break
|
||
|
}
|
||
|
start++
|
||
|
}
|
||
|
return start
|
||
|
}
|