mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 02:42:09 +02:00
16 lines
300 B
C
16 lines
300 B
C
#pragma once
|
|
|
|
#include "fastfetch.h"
|
|
|
|
typedef struct FFDiskIOResult
|
|
{
|
|
FFstrbuf name;
|
|
FFstrbuf devPath;
|
|
uint64_t bytesRead;
|
|
uint64_t readCount;
|
|
uint64_t bytesWritten;
|
|
uint64_t writeCount;
|
|
} FFDiskIOResult;
|
|
|
|
const char* ffDetectDiskIO(FFlist* result, FFDiskIOOptions* options);
|