1use crate::functions::counters_init::G_COUNTERS; 2 3// Faithful port of `bool countersActive() { return gCounters.L != nullptr; }`. 4pub fn counters_active() -> bool { 5 unsafe { !(*core::ptr::addr_of!(G_COUNTERS)).l.is_null() } 6}