File: fuzz.go

package info (click to toggle)
golang-github-gomarkdown-markdown 0.0~git20231115.a660076-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 1,168 kB
  • sloc: sh: 26; makefile: 5
file content (10 lines) | stat: -rw-r--r-- 173 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
//go:build gofuzz
// +build gofuzz

package markdown

// Fuzz is to be used by https://github.com/dvyukov/go-fuzz
func Fuzz(data []byte) int {
	Parse(data, nil)
	return 0
}