![github]![crates-io]![docs-rs]

sus - (an alternative to unsafe)

A macro that is useful when you want to give the impression that a block of code is questionable, dishonest or suspicious.

Usage Example

``` unsafe fn dangerous() {}

fn main() { sus! { dangerous() } } ```