build supplies & template for tommyds

This commit is contained in:
2024-07-05 02:33:41 +00:00
parent 8418df6a93
commit 63bbaf0801
6 changed files with 47 additions and 4 deletions

View File

@ -1,5 +1,4 @@
#ifndef ASSEMBLER_H
#define ASSEMBLER_H
typedef signed int form;
typedef unsigned int next;
@ -54,4 +53,5 @@ extern byte * token_array;
extern void assemble (next count, next * array);
#define ASSEMBLER_H
#endif

1
source/table.c Normal file
View File

@ -0,0 +1 @@
#include "table.h"

14
source/table.h Normal file
View File

@ -0,0 +1,14 @@
#ifndef TABLE_H_
#include <tommyds/tommytrie.h>
typedef struct {
/* size_t size; */
/* int * hash; */
/* void * data; */
tommy_node node;
} value_table_t;
#define TABLE_H_
#endif