CoreFoundation_sys/
locale.rs

1// Exports of <CoreFoundation/CFLocale.h>
2
3use libc::c_void;
4
5#[doc(hidden)]
6#[repr(C)]
7pub struct __CFLocale {
8    __private: c_void,
9}
10
11pub type CFLocaleRef = *const __CFLocale;