10 lines
112 B
C
10 lines
112 B
C
#pragma once
|
|
#include "fumocommon.h"
|
|
|
|
|
|
struct DictionaryTemplate {
|
|
u32 *keys;
|
|
void **value_ptrs;
|
|
|
|
usize n;
|
|
}; |