5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-11-12 21:50:26 +00:00
matterbridge/vendor/github.com/gomarkdown/markdown/fuzz.go

11 lines
173 B
Go
Raw Permalink Normal View History

2022-06-11 21:07:42 +00:00
//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
}