Add ascii encoding

This commit is contained in:
2024-07-25 16:30:02 +02:00
parent 7bcc02c66d
commit 161ff14189
5 changed files with 97 additions and 0 deletions

13
encoding/ucs2.go Normal file
View 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")
}