#ifndef DICT_TRANSACTION_MEMORY_H
#define DICT_TRANSACTION_MEMORY_H
#include "dict-private.h"
enum dict_change_type {
};
struct dict_transaction_memory_change {
const char *key;
union {
const char *str;
long long diff;
} value;
};
struct dict_transaction_memory_context {
};
const char *key);
#endif