├── .gitignore ├── LICENSE ├── README.md ├── project ├── common │ ├── EndianTests.gyp │ ├── regyp-all.sh │ ├── regyp-ios.sh │ ├── regyp-mac.sh │ └── regyp-win.sh ├── ios │ └── EndianTests.xcodeproj │ │ └── project.pbxproj ├── mac │ └── EndianTests.xcodeproj │ │ └── project.pbxproj └── win │ ├── EndianTests.sln │ └── EndianTests.vcproj ├── rsrc └── ios │ └── any.plist ├── tEndian.h └── tEndianTests.cc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatewake/endian-template/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatewake/endian-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatewake/endian-template/HEAD/README.md -------------------------------------------------------------------------------- /project/common/EndianTests.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatewake/endian-template/HEAD/project/common/EndianTests.gyp -------------------------------------------------------------------------------- /project/common/regyp-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatewake/endian-template/HEAD/project/common/regyp-all.sh -------------------------------------------------------------------------------- /project/common/regyp-ios.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatewake/endian-template/HEAD/project/common/regyp-ios.sh -------------------------------------------------------------------------------- /project/common/regyp-mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatewake/endian-template/HEAD/project/common/regyp-mac.sh -------------------------------------------------------------------------------- /project/common/regyp-win.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatewake/endian-template/HEAD/project/common/regyp-win.sh -------------------------------------------------------------------------------- /project/ios/EndianTests.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatewake/endian-template/HEAD/project/ios/EndianTests.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /project/mac/EndianTests.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatewake/endian-template/HEAD/project/mac/EndianTests.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /project/win/EndianTests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatewake/endian-template/HEAD/project/win/EndianTests.sln -------------------------------------------------------------------------------- /project/win/EndianTests.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatewake/endian-template/HEAD/project/win/EndianTests.vcproj -------------------------------------------------------------------------------- /rsrc/ios/any.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatewake/endian-template/HEAD/rsrc/ios/any.plist -------------------------------------------------------------------------------- /tEndian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatewake/endian-template/HEAD/tEndian.h -------------------------------------------------------------------------------- /tEndianTests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatewake/endian-template/HEAD/tEndianTests.cc --------------------------------------------------------------------------------