1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
//! [Foundation](https://developer.apple.com/documentation/foundation) framework.
//!
//! # Feature Flag
//!
//! This module corresponds to the **`foundation`**
//! [feature flag](../index.html#feature-flags).
//!
//! It also transitively enables [`objc`](../objc/index.html).

mod cmp;
mod nsstring;

pub use cmp::*;
pub use nsstring::*;

#[link(name = "Foundation", kind = "framework")]
extern "C" {}