1
0
mirror of https://github.com/janet-lang/janet synced 2025-11-07 11:03:04 +00:00

Beginning of struct support.

TODO:
- struct return values
- support for unions in signatures
- more testing
- complex types
- packed structs
- writing structs to buffers (useful and we have most of the machinery).
This commit is contained in:
Calvin Rose
2022-06-09 20:27:56 -05:00
parent 6f90df26a5
commit f1ec8d1e11
4 changed files with 421 additions and 166 deletions

View File

@@ -32,6 +32,7 @@
#include <stdio.h>
#include <errno.h>
#include <stddef.h>
#include <stdbool.h>
#ifndef _MSC_VER
#include <alloca.h>