libtthimage/Lib/readjpeg.c

22 lines
461 B
C
Raw Normal View History

2022-12-26 05:50:19 +01:00
/*
--------- 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;
}
/*::------------------------------------------------------------------::*/