summaryrefslogtreecommitdiff
path: root/src/cmd.h
diff options
context:
space:
mode:
authorbpc2003 <wpesfriendnva@gmail.com>2025-05-23 14:23:10 -0400
committerbpc2003 <wpesfriendnva@gmail.com>2025-05-23 14:23:10 -0400
commit0cb3dab6b0fc4b5ebe00c0afaaceb68dcf98c6dc (patch)
tree468adce03e77dc837d022d99d0b07260626123c0 /src/cmd.h
parent175c04f2972c2a65e29ba2456ba5d058c35dcf87 (diff)
Migrating from personal testing framework to Unity
Diffstat (limited to 'src/cmd.h')
-rw-r--r--src/cmd.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/cmd.h b/src/cmd.h
deleted file mode 100644
index 03a4005..0000000
--- a/src/cmd.h
+++ /dev/null
@@ -1,15 +0,0 @@
-#ifndef CMD_H
-#define CMD_H
-
-enum cmdtype { GET, SET, DEL, ERR };
-
-struct cmd {
- enum cmdtype type;
- char *selector;
- int plen;
- char **params;
-};
-
-struct cmd eval(char *str);
-
-#endif