https://github.com/rin-z4/cwl
C wrapper lang
https://github.com/rin-z4/cwl
c c89 c99 memory-safety transpiler
Last synced: about 2 months ago
JSON representation
C wrapper lang
- Host: GitHub
- URL: https://github.com/rin-z4/cwl
- Owner: Rin-Z4
- License: bsd-3-clause
- Created: 2025-05-13T08:28:24.000Z (5 months ago)
- Default Branch: master
- Last Pushed: 2025-05-13T08:41:48.000Z (5 months ago)
- Last Synced: 2025-05-30T10:16:28.167Z (4 months ago)
- Topics: c, c89, c99, memory-safety, transpiler
- Language: C
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cwl (C wrapper lang)
A language that's pretty much C99, but aims to fix some of its memory-safety shortcomings. The output is source files in C89.# TODO
- [ ] Datatypes for ease of working
- [ ] Memory management
- [ ] Tokenizer
- [ ] Parser
- [ ] Stage 1 -- Overall structure (w/o parsing expressions yet)
- [ ] Stage 2 -- Expressions
- [ ] Checker (Find errors)
- [ ] Translator (Generate C89 code from the AST)# Notes
- The project is written in C89 for maximum portability
- No recursion