Files
fastfetch/src/detection/zpool/zpool.h
T

19 lines
358 B
C

#pragma once
#include "fastfetch.h"
#include "modules/zpool/option.h"
typedef struct FFZpoolResult
{
FFstrbuf name;
FFstrbuf state;
uint64_t guid;
uint64_t used;
uint64_t total;
uint64_t allocated;
double fragmentation;
bool readOnly;
} FFZpoolResult;
const char* ffDetectZpool(FFlist* result /* list of FFZpoolResult */);