rsconf 0.3.0

The missing cargo API. A sane autoconf w/ build.rs helpers for testing for system headers, libraries, and symbols
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdio.h>
{}

int main() {{
#if defined({1})
	return 0;
#else
	// INVALID@INVALID
	// It turns out INVALID is a reserved keyword under MSVC, even when it's #if'd out!
	FOO17@BAR24
#endif
}}