5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 16:02:31 +00:00
matterbridge/vendor/github.com/sorcix/irc/strings.go

18 lines
256 B
Go
Raw Normal View History

2016-04-10 21:39:38 +00:00
// 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)
}