3
0
mirror of https://github.com/42wim/matterbridge.git synced 2025-01-02 08:32:38 +01:00
matterbridge/vendor/github.com/gomarkdown/markdown/fuzz.go

10 lines
155 B
Go

// +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
}