unipdf/internal/endian/endian.go
2021-02-22 02:29:48 +00:00

13 lines
742 B
Go

//
// Copyright 2020 FoxyUtils ehf. All rights reserved.
//
// This is a commercial product and requires a license to operate.
// A trial license can be obtained at https://unidoc.io
//
// DO NOT EDIT: generated by unitwist Go source code obfuscator.
//
// Use of this source code is governed by the UniDoc End User License Agreement
// terms that can be accessed at https://unidoc.io/eula/
package endian ;import (_c "encoding/binary";_b "unsafe";);var (ByteOrder _c .ByteOrder ;_f bool ;);func init (){const _ad =int (_b .Sizeof (0));_af :=1;_d :=(*[_ad ]byte )(_b .Pointer (&_af ));if _d [0]==0{_f =true ;ByteOrder =_c .BigEndian ;}else {ByteOrder =_c .LittleEndian ;
};};func IsLittle ()bool {return !_f };func IsBig ()bool {return _f };