Added JSON support. (0.28.0)
This commit is contained in:
parent
0fa6d56c14
commit
afb0e8cd3a
16 changed files with 521 additions and 3 deletions
7
src/vm.c
7
src/vm.c
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue