File: strings_legacy.go

package info (click to toggle)
golang-sorcix-irc-dev 1.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, trixie
  • size: 124 kB
  • sloc: makefile: 3
file content (22 lines) | stat: -rw-r--r-- 444 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright 2014 Vic Demuzere
//
// Use of this source code is governed by the MIT license.

// +build !go1.2

// Debian Wheezy only ships Go 1.0:
// https://github.com/sorcix/irc/issues/4
//
// This code may be removed when Wheezy is no longer supported.

package irc

// indexByte implements strings.IndexByte for Go versions < 1.2.
func indexByte(s string, c byte) int {
	for i := range s {
		if s[i] == c {
			return i
		}
	}
	return -1
}