mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 02:42:09 +02:00
19 lines
358 B
C
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 */);
|