OSDetect
1.0.0
A tiny header file for detects the operating system in C based program.
#include <stdio.h>
const char *OS();
int main() {
printf("==>%sn", OS());
return 0;
}gcc test.c source/osdetect.c -o test