added header for list.h

This commit is contained in:
Emilia(SleepeeSoftware) 2026-03-04 04:17:28 +01:00
parent 724e661106
commit 76ea84b0be
2 changed files with 7 additions and 4 deletions

8
.gitignore vendored
View File

@ -1,4 +1,4 @@
./build
./obj
*.exe
*.out
./build
./obj
*.exe
*.out

View File

@ -1,6 +1,9 @@
#ifndef LIST_H
# define LIST_H
#include <stdint.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdlib.h>
#include <stdio.h>
#include <stdarg.h>