aboutsummaryrefslogtreecommitdiff
path: root/parser.c
diff options
context:
space:
mode:
Diffstat (limited to 'parser.c')
-rw-r--r--parser.c15
1 files changed, 1 insertions, 14 deletions
diff --git a/parser.c b/parser.c
index 1c127cd..a680d2a 100644
--- a/parser.c
+++ b/parser.c
@@ -1,19 +1,6 @@
#include "db.h"
-uint16_t len(const char *s){
- uint16_t l = -1;
- while(s[++l]);
- return l;
-}
-
-bool sameStr(const char* s1, const char *s2){
- uint16_t i1 = 0, i2 = 0;
- while(s1[i1] && s2[i2] && s1[i1] == s2[i2])
- ++i1, ++i2;
- return !s1[i1] && !s2[i2];
-}
-
int handleMetaCommand(inputBuffer *in){
if(sameStr(in->buffer, ".exit")){
freeInputBuffer(in);
@@ -30,4 +17,4 @@ int handleInput(inputBuffer *in){
}else{
printf("normal command\n");
}
-} \ No newline at end of file
+}