fxkit 0.1.3

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

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

int main() {
  const char* PATH = fxkit_read_env("PATH");

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

  return 0;
}