From 390cbf31635951e46a49ed8657cd2a1635757f19 Mon Sep 17 00:00:00 2001 From: yuzu-eva Date: Sun, 8 Jun 2025 14:33:02 +0200 Subject: changed project structure, adjusted Makefile --- enum.h | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 enum.h (limited to 'enum.h') diff --git a/enum.h b/enum.h deleted file mode 100644 index 65cde6f..0000000 --- a/enum.h +++ /dev/null @@ -1,29 +0,0 @@ -#ifndef _ENUM_ -#define _ENUM_ - -#include - -typedef enum { - GET, - SET, - ADD, - ANIME, - MANGA, - BOOK, -} args_e; - -static const struct { - args_e val; - const char *str; -} conversion_args [] = { - {GET, "get"}, - {SET, "set"}, - {ADD, "add"}, - {ANIME, "anime"}, - {MANGA, "manga"}, - {BOOK, "book"}, -}; - -args_e str2enum(const char *str); - -#endif -- cgit v1.2.3