Files
moxa/stdlib/encoding_ascii85.go
2018-12-19 11:41:48 +01:00

22 lines
610 B
Go

package stdlib
// Code generated by 'goexports encoding/ascii85'. DO NOT EDIT.
import (
"encoding/ascii85"
"reflect"
)
func init() {
Value["encoding/ascii85"] = map[string]reflect.Value{
"Decode": reflect.ValueOf(ascii85.Decode),
"Encode": reflect.ValueOf(ascii85.Encode),
"MaxEncodedLen": reflect.ValueOf(ascii85.MaxEncodedLen),
"NewDecoder": reflect.ValueOf(ascii85.NewDecoder),
"NewEncoder": reflect.ValueOf(ascii85.NewEncoder),
}
Type["encoding/ascii85"] = map[string]reflect.Type{
"CorruptInputError": reflect.TypeOf((*ascii85.CorruptInputError)(nil)).Elem(),
}
}