File: stringwriterwriter_ltgo1.12.go

package info (click to toggle)
golang-github-microcosm-cc-bluemonday 1.0.26-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 668 kB
  • sloc: makefile: 25
file content (15 lines) | stat: -rw-r--r-- 224 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//go:build go1.1 && !go1.12
// +build go1.1,!go1.12

package bluemonday

import "io"

type stringWriterWriter interface {
	io.Writer
	StringWriter
}

type StringWriter interface {
	WriteString(s string) (n int, err error)
}