You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
matterbridge/vendor/github.com/sorcix/irc/strings.go

18 lines
256 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 irc
import (
"strings"
)
func indexByte(s string, c byte) int {
return strings.IndexByte(s, c)
}