initial commit
authorJohn Tsiombikas <nuclear@member.fsf.org>
Tue, 7 Dec 2021 01:15:01 +0000 (03:15 +0200)
committerJohn Tsiombikas <nuclear@member.fsf.org>
Tue, 7 Dec 2021 01:15:01 +0000 (03:15 +0200)
commitd24c217a0e44402bf3ea1b1392a5514cae4f0a25
tree7928ba251bb72d93353264a7788c2a75d5502853
initial commit
134 files changed:
.gitignore [new file with mode: 0644]
Makefile [new file with mode: 0644]
imago/Makefile [new file with mode: 0644]
imago/jpeglib/README [new file with mode: 0644]
imago/jpeglib/cderror.h [new file with mode: 0644]
imago/jpeglib/jcapimin.c [new file with mode: 0644]
imago/jpeglib/jcapistd.c [new file with mode: 0644]
imago/jpeglib/jccoefct.c [new file with mode: 0644]
imago/jpeglib/jccolor.c [new file with mode: 0644]
imago/jpeglib/jcdctmgr.c [new file with mode: 0644]
imago/jpeglib/jchuff.c [new file with mode: 0644]
imago/jpeglib/jchuff.h [new file with mode: 0644]
imago/jpeglib/jcinit.c [new file with mode: 0644]
imago/jpeglib/jcmainct.c [new file with mode: 0644]
imago/jpeglib/jcmarker.c [new file with mode: 0644]
imago/jpeglib/jcmaster.c [new file with mode: 0644]
imago/jpeglib/jcomapi.c [new file with mode: 0644]
imago/jpeglib/jconfig.h [new file with mode: 0644]
imago/jpeglib/jcparam.c [new file with mode: 0644]
imago/jpeglib/jcphuff.c [new file with mode: 0644]
imago/jpeglib/jcprepct.c [new file with mode: 0644]
imago/jpeglib/jcsample.c [new file with mode: 0644]
imago/jpeglib/jctrans.c [new file with mode: 0644]
imago/jpeglib/jdapimin.c [new file with mode: 0644]
imago/jpeglib/jdapistd.c [new file with mode: 0644]
imago/jpeglib/jdatadst.c [new file with mode: 0644]
imago/jpeglib/jdatasrc.c [new file with mode: 0644]
imago/jpeglib/jdcoefct.c [new file with mode: 0644]
imago/jpeglib/jdcolor.c [new file with mode: 0644]
imago/jpeglib/jdct.h [new file with mode: 0644]
imago/jpeglib/jddctmgr.c [new file with mode: 0644]
imago/jpeglib/jdhuff.c [new file with mode: 0644]
imago/jpeglib/jdhuff.h [new file with mode: 0644]
imago/jpeglib/jdinput.c [new file with mode: 0644]
imago/jpeglib/jdmainct.c [new file with mode: 0644]
imago/jpeglib/jdmarker.c [new file with mode: 0644]
imago/jpeglib/jdmaster.c [new file with mode: 0644]
imago/jpeglib/jdmerge.c [new file with mode: 0644]
imago/jpeglib/jdphuff.c [new file with mode: 0644]
imago/jpeglib/jdpostct.c [new file with mode: 0644]
imago/jpeglib/jdsample.c [new file with mode: 0644]
imago/jpeglib/jdtrans.c [new file with mode: 0644]
imago/jpeglib/jerror.c [new file with mode: 0644]
imago/jpeglib/jerror.h [new file with mode: 0644]
imago/jpeglib/jfdctflt.c [new file with mode: 0644]
imago/jpeglib/jfdctfst.c [new file with mode: 0644]
imago/jpeglib/jfdctint.c [new file with mode: 0644]
imago/jpeglib/jidctflt.c [new file with mode: 0644]
imago/jpeglib/jidctfst.c [new file with mode: 0644]
imago/jpeglib/jidctint.c [new file with mode: 0644]
imago/jpeglib/jidctred.c [new file with mode: 0644]
imago/jpeglib/jinclude.h [new file with mode: 0644]
imago/jpeglib/jmemmgr.c [new file with mode: 0644]
imago/jpeglib/jmemnobs.c [new file with mode: 0644]
imago/jpeglib/jmemsys.h [new file with mode: 0644]
imago/jpeglib/jmorecfg.h [new file with mode: 0644]
imago/jpeglib/jpegint.h [new file with mode: 0644]
imago/jpeglib/jpeglib.h [new file with mode: 0644]
imago/jpeglib/jquant1.c [new file with mode: 0644]
imago/jpeglib/jquant2.c [new file with mode: 0644]
imago/jpeglib/jutils.c [new file with mode: 0644]
imago/jpeglib/jversion.h [new file with mode: 0644]
imago/libpng/LICENSE [new file with mode: 0644]
imago/libpng/png.c [new file with mode: 0644]
imago/libpng/png.h [new file with mode: 0644]
imago/libpng/pngconf.h [new file with mode: 0644]
imago/libpng/pngerror.c [new file with mode: 0644]
imago/libpng/pngget.c [new file with mode: 0644]
imago/libpng/pngmem.c [new file with mode: 0644]
imago/libpng/pngpread.c [new file with mode: 0644]
imago/libpng/pngread.c [new file with mode: 0644]
imago/libpng/pngrio.c [new file with mode: 0644]
imago/libpng/pngrtran.c [new file with mode: 0644]
imago/libpng/pngrutil.c [new file with mode: 0644]
imago/libpng/pngset.c [new file with mode: 0644]
imago/libpng/pngtrans.c [new file with mode: 0644]
imago/libpng/pngwio.c [new file with mode: 0644]
imago/libpng/pngwrite.c [new file with mode: 0644]
imago/libpng/pngwtran.c [new file with mode: 0644]
imago/libpng/pngwutil.c [new file with mode: 0644]
imago/src/byteord.c [new file with mode: 0644]
imago/src/byteord.h [new file with mode: 0644]
imago/src/conv.c [new file with mode: 0644]
imago/src/filejpeg.c [new file with mode: 0644]
imago/src/filelbm.c [new file with mode: 0644]
imago/src/filepng.c [new file with mode: 0644]
imago/src/fileppm.c [new file with mode: 0644]
imago/src/filergbe.c [new file with mode: 0644]
imago/src/filetga.c [new file with mode: 0644]
imago/src/ftmodule.c [new file with mode: 0644]
imago/src/ftmodule.h [new file with mode: 0644]
imago/src/imago2.c [new file with mode: 0644]
imago/src/imago2.h [new file with mode: 0644]
imago/src/imago_gl.c [new file with mode: 0644]
imago/src/inttypes.h [new file with mode: 0644]
imago/src/modules.c [new file with mode: 0644]
imago/zlib/LICENSE [new file with mode: 0644]
imago/zlib/adler32.c [new file with mode: 0644]
imago/zlib/compress.c [new file with mode: 0644]
imago/zlib/crc32.c [new file with mode: 0644]
imago/zlib/crc32.h [new file with mode: 0644]
imago/zlib/deflate.c [new file with mode: 0644]
imago/zlib/deflate.h [new file with mode: 0644]
imago/zlib/gzio.c [new file with mode: 0644]
imago/zlib/infback.c [new file with mode: 0644]
imago/zlib/inffast.c [new file with mode: 0644]
imago/zlib/inffast.h [new file with mode: 0644]
imago/zlib/inffixed.h [new file with mode: 0644]
imago/zlib/inflate.c [new file with mode: 0644]
imago/zlib/inflate.h [new file with mode: 0644]
imago/zlib/inftrees.c [new file with mode: 0644]
imago/zlib/inftrees.h [new file with mode: 0644]
imago/zlib/trees.c [new file with mode: 0644]
imago/zlib/trees.h [new file with mode: 0644]
imago/zlib/uncompr.c [new file with mode: 0644]
imago/zlib/zconf.h [new file with mode: 0644]
imago/zlib/zlib.h [new file with mode: 0644]
imago/zlib/zutil.c [new file with mode: 0644]
imago/zlib/zutil.h [new file with mode: 0644]
src/cdpmi.h [new file with mode: 0644]
src/djdpmi.c [new file with mode: 0644]
src/main.c [new file with mode: 0644]
src/mouse.c [new file with mode: 0644]
src/mouse.h [new file with mode: 0644]
src/util.c [new file with mode: 0644]
src/util.h [new file with mode: 0644]
src/util_s.asm [new file with mode: 0644]
src/vbe.c [new file with mode: 0644]
src/vbe.h [new file with mode: 0644]
src/vga.c [new file with mode: 0644]
src/vga.h [new file with mode: 0644]
src/video.c [new file with mode: 0644]
src/video.h [new file with mode: 0644]
src/watdpmi.c [new file with mode: 0644]