Home | History | Annotate | Download | only in bug369.dir
      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 
      5 package pkg
      6 
      7 func 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