fxkit 0.1.4

Useful utilities for writting Rust CLI tools
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#define FXKIT_TOOLS
#define FXKIT_UNIX

#include <fxkit/fxkit.h>
#include <stdio.h>

int main() {
  const char* OS = fxkit_get_os();

  printf("PATH: %s", OS);

  return 0;
}