mirror of
https://github.com/fumiama/simple-dict.git
synced 2026-06-05 02:00:25 +08:00
16 lines
276 B
C
16 lines
276 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
|