lldb_sys/
lib.rs

1// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
2// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
3// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
4// option. This file may not be copied, modified, or distributed
5// except according to those terms.
6
7//! # lldb-sys
8//!
9//! [LLDB](https://lldb.llvm.org/) is a debugger from the
10//! [LLVM](https://llvm.org/) project. It is usable as both a
11//! standalone program as well as via an API.
12//!
13//! This crate provides a low-level, fairly direct mapping of the
14//! [public C++ API](https://lldb.llvm.org/cpp_reference/namespacelldb.html)
15//! for LLDB into unsafe Rust.
16//!
17//! It is primarily for use by a higher level crate, such as
18//! [lldb.rs](https://crates.io/crates/lldb/).
19
20mod lldb_sys;
21
22pub use crate::lldb_sys::*;
23
24#[cfg(test)]
25mod tests {
26    #[test]
27    fn it_works() {}
28}