Add ascii encoding
This commit is contained in:
13
encoding/ucs2.go
Normal file
13
encoding/ucs2.go
Normal file
@@ -0,0 +1,13 @@
|
||||
package encoding
|
||||
|
||||
import "bytes"
|
||||
|
||||
type UCS2Coder struct{}
|
||||
|
||||
func (c *UCS2Coder) Encode(s string, buf *bytes.Buffer) {
|
||||
panic("UCS2 not implemented yet")
|
||||
}
|
||||
|
||||
func (c *UCS2Coder) Decode(buf *bytes.Buffer) string {
|
||||
panic("UCS2 not implemented yet")
|
||||
}
|
Reference in New Issue
Block a user