forked from lug/matterbridge
Vendor libs
This commit is contained in:
17
vendor/github.com/sorcix/irc/strings.go
generated
vendored
Normal file
17
vendor/github.com/sorcix/irc/strings.go
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
// Copyright 2014 Vic Demuzere
|
||||
//
|
||||
// Use of this source code is governed by the MIT license.
|
||||
|
||||
// +build go1.2
|
||||
|
||||
// Documented in strings_legacy.go
|
||||
|
||||
package irc
|
||||
|
||||
import (
|
||||
"strings"
|
||||
)
|
||||
|
||||
func indexByte(s string, c byte) int {
|
||||
return strings.IndexByte(s, c)
|
||||
}
|
||||
Reference in New Issue
Block a user