mirror of
https://github.com/openharmony/third_party_rust_bindgen.git
synced 2026-07-21 15:15:27 -04:00
1213b3dfb1
remove `clap` dependency 🎉
update the book installation instructions
15 lines
290 B
C
15 lines
290 B
C
#define FOO 1
|
|
#define BAR 4
|
|
#define BAZ (FOO + BAR)
|
|
|
|
#define MIN (1 << 63)
|
|
|
|
#define BARR (1 << 0)
|
|
#define BAZZ ((1 << 1) + BAZ)
|
|
#define I_RAN_OUT_OF_DUMB_NAMES (BARR | BAZZ)
|
|
|
|
/* I haz a comment */
|
|
#define HAZ_A_COMMENT BARR
|
|
|
|
#define HAZ_A_COMMENT_INSIDE (/* comment for real */ BARR + FOO)
|