go-countlines/countlines_generic.go

8 lines
218 B
Go

//go:build !amd64 || gccgo || appengine
package countlines
// CountBytes function counts number of non-zero bits in slice of 8bit unsigned integers.
func CountNewlines(s []byte) uint64 {
return countNewlinesGo(s)
}