mirror of
https://github.com/wader/fq.git
synced 2024-11-23 18:56:52 +03:00
1b32b42f93
Generate more code More generic and comfortable API Improve and Update format decoder to new API Add some more format tests
10 lines
149 B
Go
10 lines
149 B
Go
package bitio
|
|
|
|
func ReverseBytes(bs []byte) []byte {
|
|
l := len(bs)
|
|
for i := 0; i < l/2; i++ {
|
|
bs[i], bs[l-i-1] = bs[l-i-1], bs[i]
|
|
}
|
|
return bs
|
|
}
|