fastfetch-sys 2.43.0

A neofetch like system information tool
Documentation
#pragma once

#include "fastfetch.h"

typedef struct FFPhysicalMemoryResult
{
    uint64_t size; // B
    uint32_t maxSpeed; // MT/s
    uint32_t runningSpeed; // MT/s
    FFstrbuf type;
    FFstrbuf formFactor;
    FFstrbuf locator;
    FFstrbuf partNumber;
    FFstrbuf vendor;
    FFstrbuf serial;
    bool ecc;
} FFPhysicalMemoryResult;

const char* ffDetectPhysicalMemory(FFlist* result); // list of FFPhysicalMemoryResult

void FFPhysicalMemoryUpdateVendorString(FFPhysicalMemoryResult* device);