rscamper 0.2.2

Rust interface to scamper network measurement tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// rscamper - Rust FFI bindings for scamper_sting.h
//
// Copyright (C) 2026 Dimitrios Giakatos
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, version 3.

#[repr(C)]
pub struct ScamperStingT {
    _opaque: [u8; 0],
}

unsafe extern "C" {
    pub fn scamper_sting_free(sting: *mut ScamperStingT);
}