arborium-sysroot 2.18.2

WASM sysroot for arborium grammar crates
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// Stub stdio.c for tree-sitter WASM builds
#include <stdarg.h>

typedef struct {} FILE;
FILE _stderr;
FILE *stderr = &_stderr;

int fprintf(FILE* stream, const char* format, ...) {
    (void)stream;
    (void)format;
    return 0;
}