Example usage

Cargo.toml:

```toml [lib] name = "foo" crate-type = ["dylib"]

[dependencies] export_cstr = "*" ```

lib.rs:

```rust

![feature(plugin)]

[plugin] #[macrouse] extern crate exportcstr;

// implicit #[allow(deadcode, nonuppercaseglobals)] export_cstr!(foo, "this becomes an exported symbol 'foo' which points to a constant, null-terminated, C string");

// ... ```