gost_software/vendor/gopkg.in/sorcix/irc.v2/internal/strings.go
2018-05-17 13:14:45 +01:00

20 lines
363 B
Go

// Copyright 2014 Vic Demuzere
//
// Use of this source code is governed by the MIT license.
// +build go1.2
// Documented in strings_legacy.go
package internal
import (
"strings"
)
// IndexByte is a compatibility function so strings.IndexByte can be used in
// older versions of go.
func IndexByte(s string, c byte) int {
return strings.IndexByte(s, c)
}