File: main.go

package info (click to toggle)
golang-github-tdewolff-parse 2.8.10-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 848 kB
  • sloc: makefile: 2
file content (13 lines) | stat: -rw-r--r-- 168 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
// +build gofuzz

package fuzz

import (
	"github.com/tdewolff/parse/v2/css"
)

// Fuzz is a fuzz test.
func Fuzz(data []byte) int {
	_ = css.IsIdent(data)
	return 1
}