From f6fd9b38f5e1a1088646c86ac6abde0af3475e9c Mon Sep 17 00:00:00 2001 From: John Hawthorn Date: Thu, 22 May 2008 01:54:32 -0700 Subject: cleanup --- src/gif.h | 5 ----- src/jpeg.h | 3 --- src/meh.h | 7 +++++++ src/png.c | 6 ++++++ 4 files changed, 13 insertions(+), 8 deletions(-) delete mode 100644 src/gif.h delete mode 100644 src/jpeg.h create mode 100644 src/meh.h create mode 100644 src/png.c (limited to 'src') diff --git a/src/gif.h b/src/gif.h deleted file mode 100644 index 17a86dc..0000000 --- a/src/gif.h +++ /dev/null @@ -1,5 +0,0 @@ - -#include - -unsigned char *loadgif(FILE *, int *, int *); - diff --git a/src/jpeg.h b/src/jpeg.h deleted file mode 100644 index b6ab2e3..0000000 --- a/src/jpeg.h +++ /dev/null @@ -1,3 +0,0 @@ - -unsigned char *loadjpeg(FILE *, int *, int *); - diff --git a/src/meh.h b/src/meh.h new file mode 100644 index 0000000..719b717 --- /dev/null +++ b/src/meh.h @@ -0,0 +1,7 @@ + +#include + +unsigned char *loadgif(FILE *, int *, int *); +unsigned char *loadjpeg(FILE *, int *, int *); +unsigned char *loadpng(FILE *, int *, int *); + diff --git a/src/png.c b/src/png.c new file mode 100644 index 0000000..76b4461 --- /dev/null +++ b/src/png.c @@ -0,0 +1,6 @@ +#include "meh.h" + +unsigned char *loadpng(FILE *infile, int *bufwidth, int *bufheight){ + return NULL; +} + -- cgit v1.2.3