mozjs_sys 0.67.1

System crate for the Mozilla SpiderMonkey JavaScript engine.
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdio.h>

void check(int* h, long* k) {
  *h = 1;
  *k = 0;
  printf("%d\n", *h);
}

int main(void) {
  long k;
  check((int*)&k, &k);
  return 0;
}