to be finished, please

This commit is contained in:
tTh 2022-12-26 05:50:19 +01:00
parent 00e796bf5e
commit 15124ad892
2 changed files with 23 additions and 1 deletions

View File

@ -109,6 +109,7 @@ ptlist.o: ptlist.c $(DEPS)
quadpics.o: quadpics.c $(DEPS)
readjpeg.o: readjpeg.c $(DEPS)
recurse.o: recurse.c $(DEPS)
rgbmask.o: rgbmask.c $(DEPS)
@ -169,7 +170,7 @@ OBJECTS = 7seg.o \
pov_hf15e.o pov_hf15e.o pov_hf15f.o pov_synth.o \
ptlist.o \
quadpics.o \
recurse.o rgbmask.o \
readjpeg.o recurse.o rgbmask.o \
scale.o sobel4.o stereo.o \
tamppool.o tele_2.o television.o \
text0.o text1.o text16x24.o \

21
Lib/readjpeg.c Normal file
View File

@ -0,0 +1,21 @@
/*
--------- libtthimage -----------
trying to code a JPEG file reader
new Mon 26 Dec 2022 05:43:47 AM CET
*/
#include <stdio.h>
#include "../tthimage.h"
/*::------------------------------------------------------------------::*/
int try_to_read_a_jpeg_file(char *fname, Image_Desc *img)
{
fprintf(stderr, ">>> %s ( %s %p )\n", __func__, fname, img);
return FULL_NUCKED;
}
/*::------------------------------------------------------------------::*/