File: strings.go

package info (click to toggle)
golang-sorcix-irc-dev 1.1.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 132 kB
  • sloc: makefile: 3
file content (17 lines) | stat: -rw-r--r-- 256 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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)
}