diff options
Diffstat (limited to 'src/detection/libc/libc.h')
| -rw-r--r-- | src/detection/libc/libc.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/detection/libc/libc.h b/src/detection/libc/libc.h new file mode 100644 index 0000000..f2718e8 --- /dev/null +++ b/src/detection/libc/libc.h @@ -0,0 +1,10 @@ +#pragma once + +#include "fastfetch.h" + +typedef struct FFLibcResult { + const char* name; + const char* version; +} FFLibcResult; + +const char* ffDetectLibc(FFLibcResult* result); |