mirror of
https://github.com/fumiama/go-base16384.git
synced 2026-06-13 15:00:40 +08:00
完成
This commit is contained in:
25
README.md
25
README.md
@@ -1,2 +1,27 @@
|
||||
# go-base16384
|
||||
base16384 interface of golang
|
||||
|
||||
# Functions
|
||||
|
||||
## func Encode(b []byte) []byte
|
||||
Encode b to utf16be.
|
||||
## func Decode(b []byte) []byte
|
||||
Decode from encoded b.
|
||||
## func UTF16be2utf8(b []byte) ([]byte, error)
|
||||
Display the result.
|
||||
## func UTF82utf16be(b []byte) ([]byte, error)
|
||||
Turn the result to its original coding form to decode.
|
||||
|
||||
# Usage
|
||||
## As package
|
||||
Just include it in your project.
|
||||
## As lib
|
||||
Copy this repo to `$GOPATH/src`, then execute
|
||||
```bash
|
||||
go install -buildmode=shared -linkshared std
|
||||
go install -buildmode=shared -linkshared base14
|
||||
```
|
||||
Now you can use
|
||||
```bash
|
||||
go build -linkshared ...
|
||||
```
|
||||
Reference in New Issue
Block a user