stash undo3

This commit is contained in:
2025-11-29 12:36:11 -08:00
parent 85e9f33613
commit c47287e96e
8 changed files with 96 additions and 31 deletions

View File

@@ -11,8 +11,8 @@ LDFLAGS := -fsanitize=address
all: $(TARGET) test.txt
SRCS := main.c abuf.c term.c buffer.c editor.c core.c
HDRS := abuf.h term.h buffer.h editor.h core.h
SRCS := main.c abuf.c core.c term.c buffer.c editor.c undo.c
HDRS := abuf.h core.h term.h buffer.h editor.h undo.h
$(TARGET): $(SRCS)
$(CC) $(CFLAGS) -o $(TARGET) $(SRCS) $(LDFLAGS)