1
0
Fork 0
forked from fun/fun

Added JSON support. (0.28.0)

This commit is contained in:
Johannes Findeisen 2025-11-25 00:51:48 +01:00
commit afb0e8cd3a
16 changed files with 521 additions and 3 deletions

View file

@ -12,6 +12,7 @@
#include "map.c"
#include "string.c"
#include "pcsc.c"
#include "jsonc.c"
#include "vm.h"
#include "value.h"
#include <stdio.h>
@ -660,6 +661,12 @@ void vm_run(VM *vm, Bytecode *entry) {
#include "vm/pcsc/disconnect.c"
#include "vm/pcsc/transmit.c"
/* JSON ops (implemented in jsonc.c, included above) */
#include "vm/json/parse.c"
#include "vm/json/stringify.c"
#include "vm/json/from_file.c"
#include "vm/json/to_file.c"
#include "vm/strings/find.c"
#include "vm/strings/regex_match.c"
#include "vm/strings/regex_search.c"