DEMENTOOOOR

This commit is contained in:
Guillem George 2025-10-27 19:56:40 +01:00
parent 44d62db74c
commit 5f4d6af9c0
3 changed files with 5 additions and 0 deletions

View file

@ -26,6 +26,9 @@ debug: LDFLAGS += $(DBG_LDFLAGS)
debug: $(OBJS)
$(CC) -o $(TARGET) $^ $(LDFLAGS) $(LDLIBS)
check:
dash ./tests/run.sh
clean:
$(RM) $(TARGET)
$(RM) $(OBJS)

View file

@ -4,6 +4,7 @@
#define STRING_BUFFER_SIZE 32
#include <stddef.h>
#include <sys/types.h>
#include <stdio.h>
// Holds line information

View file

@ -16,6 +16,7 @@
#define HASHMAP_SIZE 32
#include <stdio.h>
#include <sys/types.h>
#include "lists/lists.h"