Browse Source

made file tree, made roadmap

Iver 1 month ago
parent
commit
ee4a9be7de
7 changed files with 24 additions and 0 deletions
  1. 0 0
      Makefile
  2. 11 0
      README.md
  3. 6 0
      src/headers/functions.h
  4. 7 0
      src/headers/pitmap.h
  5. 0 0
      src/headers/types.h
  6. 0 0
      src/launch_program/main.c
  7. 0 0
      src/library/main.c

+ 0 - 0
Makefile


+ 11 - 0
README.md

@@ -1 +1,12 @@
 # PitMap, a Bitmap (BMP) Image Parser
+
+## Roadmap
+
+### By End of February, 2026
+
+ - [ ] GIF support
+
+### By End of May, 2026
+
+ - [ ] PNG support
+ - [ ] JPEG support

+ 6 - 0
src/headers/functions.h

@@ -0,0 +1,6 @@
+#ifndef FUNCTIONS_H
+#define FUNCTIONS_H
+
+
+
+#endif 

+ 7 - 0
src/headers/pitmap.h

@@ -0,0 +1,7 @@
+#ifndef PITMAP_H
+#define PITMAP_H
+
+#include "functions.h"
+#include "types.h"
+
+#endif

+ 0 - 0
src/headers/types.h


+ 0 - 0
src/launch_program/main.c


+ 0 - 0
src/library/main.c