You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

20 lines
377 B

  1. package check
  2. import "io"
  3. func PrintLine(filename string, line int) (string, error) {
  4. return printLine(filename, line)
  5. }
  6. func Indent(s, with string) string {
  7. return indent(s, with)
  8. }
  9. func NewOutputWriter(writer io.Writer, stream, verbose bool) *outputWriter {
  10. return newOutputWriter(writer, stream, verbose)
  11. }
  12. func (c *C) FakeSkip(reason string) {
  13. c.reason = reason
  14. }