diff options
| author | nodist <kevin.comas.git@gmail.com> | 2026-06-26 15:56:39 -0400 |
|---|---|---|
| committer | nodist <kevin.comas.git@gmail.com> | 2026-06-26 15:56:39 -0400 |
| commit | ad516054002b4105197ef4fc37ac380cdf680750 (patch) | |
| tree | d0603a1dbc01ed777b304ac8567247491f8a5159 /docs/application/identifier.md | |
| parent | 6f507405ac3b0a128c63134997849203e3493a91 (diff) | |
change how vars are identified
Diffstat (limited to 'docs/application/identifier.md')
| -rw-r--r-- | docs/application/identifier.md | 17 |
1 files changed, 17 insertions, 0 deletions
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; +``` |
