aura  0.1
All Data Structures Functions Variables Modules Pages
versioncheck.c
1 #include <aura/aura.h>
2 
3 int main() {
4  slog_init(NULL, 18);
5 
6  printf("libaura version %s (numeric %u)\n",
7  aura_get_version(), aura_get_version_code());
8 
9  return 0;
10 }
11 
12