From ad516054002b4105197ef4fc37ac380cdf680750 Mon Sep 17 00:00:00 2001 From: nodist Date: Fri, 26 Jun 2026 15:56:39 -0400 Subject: change how vars are identified --- docs/application/identifier.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 docs/application/identifier.md (limited to 'docs/application/identifier.md') diff --git a/docs/application/identifier.md b/docs/application/identifier.md new file mode 100644 index 0000000..3195955 --- /dev/null +++ b/docs/application/identifier.md @@ -0,0 +1,17 @@ +# Identifier + +--- + +Store vars, types and symbols as compressed strings + +## Object Definitions + +```c +#define KPL_IDENTIFIER_PARTS 10 + +// TODO 100 charaters of [A-Za-z0-9_] in 80 bytes + +typedef struct { + uint64_t parts[KPL_IDENTIFIER_PARTS]; +} kpl_identifier; +``` -- cgit v1.2.3