mirror of
https://github.com/outbackdingo/ghorg.git
synced 2026-01-27 18:18:58 +00:00
10 lines
155 B
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
|
|
}
|