ckb-vm 0.20.0-alpha

CKB's Virtual machine
Documentation
1
2
3
4
5
6
7
8
9
10
11
/*
 * See https://github.com/nervosnetwork/ckb-vm/issues/98 for more details.
 */
#include <stddef.h>

int main(int argc,  char *argv[]) {
  if (argv[argc] == NULL) {
    return 0;
  }
  return 1;
}