mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2024-11-10 06:02:01 +00:00
25 lines
501 B
C
25 lines
501 B
C
|
#pragma once
|
||
|
#include "../../utils/types.h"
|
||
|
|
||
|
typedef struct _dict_str_int {
|
||
|
char *key;
|
||
|
int value;
|
||
|
struct _dict_str_int *next;
|
||
|
} dict_str_int;
|
||
|
|
||
|
typedef struct _dict_str_str {
|
||
|
char *key;
|
||
|
char *value;
|
||
|
struct _dict_str_str *next;
|
||
|
} dict_str_str;
|
||
|
|
||
|
typedef struct _dict_str_loc {
|
||
|
char *key;
|
||
|
u64 value;
|
||
|
struct _dict_str_loc *next;
|
||
|
} dict_str_loc;
|
||
|
|
||
|
int str_int_add(char *key, int value);
|
||
|
int str_int_find(char *key, int *out);
|
||
|
void str_int_clear();
|
||
|
void str_int_printall();
|