Function isOpenHarmony [src]
Prototype
pub inline fn isOpenHarmony(abi: Abi) bool
Parameters
abi: Abi
Source
pub inline fn isOpenHarmony(abi: Abi) bool {
return switch (abi) {
.ohos, .ohoseabi => true,
else => false,
};
}