1
0
mirror of https://github.com/fumiama/simple-dict.git synced 2026-06-05 02:00:25 +08:00
Files
simple-dict/old_dict.h
2021-05-19 00:42:35 +08:00

15 lines
275 B
C

#ifndef _OLD_DICT_H_
#define _OLD_DICT_H_
#include <stdint.h>
#define DATASIZE 64
struct DICTBLK{
char key[(DATASIZE-1)];
uint8_t keysize;
char data[(DATASIZE-1)];
uint8_t datasize;
};
typedef struct DICTBLK DICTBLK;
#define DICTBLKSZ sizeof(DICTBLK)
#endif