MIRROR: javascript for 馃悳's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at mir/inline-method 15 lines 403 B view raw
1#ifndef JSON_H 2#define JSON_H 3#define YYJSON_SKIP_VALUE ((yyjson_mut_val *)-1) 4 5#include "types.h" 6 7void init_json_module(void); 8 9ant_value_t js_json_parse(ant_t *js, ant_value_t *args, int nargs); 10ant_value_t js_json_stringify(ant_t *js, ant_value_t *args, int nargs); 11 12ant_value_t json_parse_value(ant_t *js, ant_value_t value); 13ant_value_t json_stringify_value(ant_t *js, ant_value_t value); 14 15#endif