aboutsummaryrefslogtreecommitdiffstats
path: root/src/gif.c
diff options
context:
space:
mode:
authorJohn Hawthorn <jhawthor@uvic.ca>2008-05-19 21:07:27 -0700
committerJohn Hawthorn <jhawthor@uvic.ca>2008-05-19 21:07:27 -0700
commitc10594536108203e215e50bf3cf61c7e8aeb733f (patch)
tree1b84c7cf6a628745f0ed76a1dcb827530ef3d8de /src/gif.c
parent1fde363229b261038dab179c91106d3d4e03cc32 (diff)
downloadmirror-meh-c10594536108203e215e50bf3cf61c7e8aeb733f.tar.gz
mirror-meh-c10594536108203e215e50bf3cf61c7e8aeb733f.tar.bz2
mirror-meh-c10594536108203e215e50bf3cf61c7e8aeb733f.zip
ready for gif decoder
Diffstat (limited to 'src/gif.c')
-rw-r--r--src/gif.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/gif.c b/src/gif.c
new file mode 100644
index 0000000..0c1ebb3
--- /dev/null
+++ b/src/gif.c
@@ -0,0 +1,9 @@
+
+#include <stdio.h>
+
+#include "gif.h"
+
+unsigned char *loadgif(FILE *infile, int *bufwidth, int *bufheight){
+ return NULL;
+}
+