├── .DS_Store ├── .gitignore ├── README.mdown ├── artFileTool.xcodeproj └── project.pbxproj ├── artFileTool ├── .DS_Store ├── Categories │ ├── NSData+Byte.h │ ├── NSData+Byte.m │ ├── NSImageRep+Data.h │ └── NSImageRep+Data.m ├── Classes │ ├── AFArtHeader.h │ ├── AFArtHeader.m │ ├── AFFileDescriptor.h │ ├── AFFileDescriptor.m │ ├── AFHeader.h │ ├── AFHeader.m │ ├── ArtFile.h │ └── ArtFile.m ├── artFileTool-Prefix.pch ├── artFileTool.1 └── main.m └── license.txt /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzielenski/artFileTool/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzielenski/artFileTool/HEAD/.gitignore -------------------------------------------------------------------------------- /README.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzielenski/artFileTool/HEAD/README.mdown -------------------------------------------------------------------------------- /artFileTool.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzielenski/artFileTool/HEAD/artFileTool.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /artFileTool/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzielenski/artFileTool/HEAD/artFileTool/.DS_Store -------------------------------------------------------------------------------- /artFileTool/Categories/NSData+Byte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzielenski/artFileTool/HEAD/artFileTool/Categories/NSData+Byte.h -------------------------------------------------------------------------------- /artFileTool/Categories/NSData+Byte.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzielenski/artFileTool/HEAD/artFileTool/Categories/NSData+Byte.m -------------------------------------------------------------------------------- /artFileTool/Categories/NSImageRep+Data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzielenski/artFileTool/HEAD/artFileTool/Categories/NSImageRep+Data.h -------------------------------------------------------------------------------- /artFileTool/Categories/NSImageRep+Data.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzielenski/artFileTool/HEAD/artFileTool/Categories/NSImageRep+Data.m -------------------------------------------------------------------------------- /artFileTool/Classes/AFArtHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzielenski/artFileTool/HEAD/artFileTool/Classes/AFArtHeader.h -------------------------------------------------------------------------------- /artFileTool/Classes/AFArtHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzielenski/artFileTool/HEAD/artFileTool/Classes/AFArtHeader.m -------------------------------------------------------------------------------- /artFileTool/Classes/AFFileDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzielenski/artFileTool/HEAD/artFileTool/Classes/AFFileDescriptor.h -------------------------------------------------------------------------------- /artFileTool/Classes/AFFileDescriptor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzielenski/artFileTool/HEAD/artFileTool/Classes/AFFileDescriptor.m -------------------------------------------------------------------------------- /artFileTool/Classes/AFHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzielenski/artFileTool/HEAD/artFileTool/Classes/AFHeader.h -------------------------------------------------------------------------------- /artFileTool/Classes/AFHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzielenski/artFileTool/HEAD/artFileTool/Classes/AFHeader.m -------------------------------------------------------------------------------- /artFileTool/Classes/ArtFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzielenski/artFileTool/HEAD/artFileTool/Classes/ArtFile.h -------------------------------------------------------------------------------- /artFileTool/Classes/ArtFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzielenski/artFileTool/HEAD/artFileTool/Classes/ArtFile.m -------------------------------------------------------------------------------- /artFileTool/artFileTool-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzielenski/artFileTool/HEAD/artFileTool/artFileTool-Prefix.pch -------------------------------------------------------------------------------- /artFileTool/artFileTool.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzielenski/artFileTool/HEAD/artFileTool/artFileTool.1 -------------------------------------------------------------------------------- /artFileTool/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzielenski/artFileTool/HEAD/artFileTool/main.m -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexzielenski/artFileTool/HEAD/license.txt --------------------------------------------------------------------------------