File: smoke.rs

package info (click to toggle)
rust-libnghttp2-sys 0.1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 340 kB
  • sloc: makefile: 13
file content (7 lines) | stat: -rw-r--r-- 103 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
extern crate libnghttp2_sys as ffi;

fn main() {
    unsafe {
        ffi::nghttp2_version(0);
    }
}