text

package
v0.0.0-...-e78e2ff Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 28, 2018 License: BSD-3-Clause Imports: 0 Imported by: 10

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Codepage

type Codepage interface {
	// Encode converts the provided string to a byte array. It appends one 0x00 byte at the end.
	Encode(value string) []byte
	// Decode converts the provided byte slice to a string. It ignores trailing 0x00 bytes.
	Decode(data []byte) string
}

Codepage wraps the methods for serializing strings. The encoded byte array is expected to be terminated by one 0x00 byte.

func DefaultCodepage

func DefaultCodepage() Codepage

DefaultCodepage returns a Codepage instance that represents the one used for the resources. It is based on the Code Page 850 ( https://en.wikipedia.org/wiki/Code_page_850 ).

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL