1
0
mirror of https://github.com/fumiama/simple-dict.git synced 2026-06-28 07:50:24 +08:00

edit kv sz

This commit is contained in:
fumiama
2021-12-13 15:42:04 +08:00
parent 4444426b5d
commit 2036edccf5

4
dict.h
View File

@@ -3,8 +3,8 @@
#include <stdint.h> #include <stdint.h>
#define DICTKEYSZ 64 #define DICTKEYSZ 127
#define DICTDATSZ 64 #define DICTDATSZ 127
struct DICT { struct DICT {
char key[DICTKEYSZ]; char key[DICTKEYSZ];
char data[DICTDATSZ]; char data[DICTDATSZ];