This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangyang-zerotierone/zeroidc/vendor/cbindgen/tests/rust/must_use.toml

15 lines
271 B
TOML

header = """
#define MUST_USE_FUNC __attribute__((warn_unused_result))
#define MUST_USE_STRUCT __attribute__((warn_unused))
#define MUST_USE_ENUM /* nothing */
"""
[fn]
must_use = "MUST_USE_FUNC"
[struct]
must_use = "MUST_USE_STRUCT"
[enum]
must_use = "MUST_USE_ENUM"