生成的代码包

This commit is contained in:
2026-09-08 10:02:27 +08:00
commit 21a6f93b3f
905 changed files with 216720 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
#ifndef INDEX_H
#define INDEX_H
#include "typedef.h"
#define TABLE(t) t, ARRAY_SIZE(t)
int index_of_table8(u8 value, const u8 *table, int table_size);
int index_of_table16(u16 value, const u16 *table, int table_size);
int index_of_table32(u32 value, const u32 *table, int table_size);
#endif