ckb-std 1.1.0

This library contains serveral modules help you write CKB contract with Rust
1
2
3
4
5
6
7
8
9
#ifndef CKB_C_STDLIB_STDBOOL_H_
#define CKB_C_STDLIB_STDBOOL_H_
#include <entry.h>

#define true 1
#define false 0
#define bool _Bool

#endif /* CKB_C_STDLIB_STDBOOL_H_ */