initial commit

This commit is contained in:
2026-01-31 12:43:20 +05:00
commit 27954f7499
6 changed files with 156 additions and 0 deletions

19
README.md Normal file
View File

@@ -0,0 +1,19 @@
# 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`
```
## Run with
```
cat image.ppm | ./iv
```
### Dependencies
* `sdl2`