GGUF parsing, initial design and functionalities.

This commit is contained in:
antirez
2023-12-24 10:36:26 +01:00
commit b47eaca8d1
4 changed files with 415 additions and 0 deletions

7
Makefile Normal file
View File

@@ -0,0 +1,7 @@
all: gguf-show
gguf-show: gguf-show.c gguf.h
$(CC) gguf-show.c -g -ggdb -Wall -W -pedantic -O2 -o gguf-show
clean:
rm -rf gguf-show