mirror of
https://github.com/42wim/matterbridge
synced 2024-11-05 12:00:27 +00:00
18 lines
256 B
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)
|
||
|
}
|