diff options
author | John Hawthorn <jhawthor@uvic.ca> | 2008-05-22 01:54:32 -0700 |
---|---|---|
committer | John Hawthorn <jhawthor@uvic.ca> | 2008-05-22 01:54:32 -0700 |
commit | f6fd9b38f5e1a1088646c86ac6abde0af3475e9c (patch) | |
tree | 36e27fc1cd9e3cdc935dc095d0f20e1db6bfbb4e /src | |
parent | 9e76bd849a935eed17a4d22a9f49974272a36da5 (diff) | |
download | mirror-meh-f6fd9b38f5e1a1088646c86ac6abde0af3475e9c.tar.gz mirror-meh-f6fd9b38f5e1a1088646c86ac6abde0af3475e9c.tar.bz2 mirror-meh-f6fd9b38f5e1a1088646c86ac6abde0af3475e9c.zip |
cleanup
Diffstat (limited to 'src')
-rw-r--r-- | src/gif.h | 5 | ||||
-rw-r--r-- | src/jpeg.h | 3 | ||||
-rw-r--r-- | src/meh.h | 7 | ||||
-rw-r--r-- | src/png.c | 6 |
4 files changed, 13 insertions, 8 deletions
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 <stdio.h> - -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 <stdio.h> + +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; +} + |