// registerLoadFromEmbeddedTZData is defined in package time. // //go:linkname registerLoadFromEmbeddedTZData time.registerLoadFromEmbeddedTZData func registerLoadFromEmbeddedTZData(func(string) (string, error)) func init() { … } // get4s returns the little-endian 32-bit value at the start of s. func get4s(s string) int { … } // get2s returns the little-endian 16-bit value at the start of s. func get2s(s string) int { … } // loadFromEmbeddedTZData returns the contents of the file with the given // name in an uncompressed zip file, where the contents of the file can // be found in embeddedTzdata. // This is similar to time.loadTzinfoFromZip. func loadFromEmbeddedTZData(name string) (string, error) { … }