rofisys 0.2.4

This system crate provides Rust language bindings (via the use of Bindgen) to the Rust-OFI library.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <unistd.h>

#include <rofi.h>
#include "utils.h"

int main(void)
{
  rofi_banner("Init Test");
  rofi_init("verbs");

  rofi_verify(0);
  rofi_finit();

  return 0;
}