[script] Remove jump list & add if_check that works like if(check())

This commit is contained in:
Such Meme, Many Skill
2020-04-12 19:21:09 +02:00
parent e892e69929
commit 15e1210179
4 changed files with 54 additions and 32 deletions

View File

@@ -17,7 +17,7 @@
static dict_str_int *str_int_table = NULL;
static dict_str_str *str_str_table = NULL;
static dict_str_loc *str_jmp_table = NULL;
//static dict_str_loc *str_jmp_table = NULL;
int str_int_add(char *key, int value){
char *key_local;
@@ -91,7 +91,7 @@ void str_int_printall(){
temp = temp->next;
}
}
/*
int str_jmp_add(char *key, u64 value){
char *key_local;
dict_str_loc *keyvaluepair;
@@ -161,6 +161,7 @@ void str_jmp_clear(){
}
str_jmp_table = NULL;
}
*/
int str_str_add(char *key, char *value){
char *key_local, *value_local;