Skip to content

Instantly share code, notes, and snippets.

View cmdneo's full-sized avatar
👻
Undefined Behaviour

CMD AMIY cmdneo

👻
Undefined Behaviour
  • Floppyyy
View GitHub Profile
@1995eaton
1995eaton / png.c
Created August 23, 2014 04:42
A simple wrapper for libpng
/* gcc -O2 -Werror -I/usr/include/libpng16 -lpng png.c -o png */
#include <stdio.h>
#include <stdlib.h>
#include <png.h>
typedef struct PNG {
int width;
int height;
int depth;