# Simple image viewer for `.ppm` types of images [Source code](iv.c) ## Build with ```bash gcc -Wall -Wextra -g -o iv iv.c `sdl2-config --cflags --libs` ``` `-Wall`, `-Wextra`, `-g` can be omitted. ## Run with ``` cat image.ppm | ./iv ``` ### Dependencies * `sdl2`