1// Copyright 2011 The Go Authors.  All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5package pkg
6
7func NonASCII(b []byte, i int) int {
8	for i = 0; i < len(b); i++ {
9		if b[i] >= 0x80 {
10			break
11		}
12	}
13	return i
14}
15
16