mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 02:42:09 +02:00
13 lines
419 B
C
13 lines
419 B
C
#pragma once
|
|
|
|
#include "fastfetch.h"
|
|
#include <yyjson.h>
|
|
|
|
#define FF_BIOS_MODULE_NAME "Bios"
|
|
|
|
void ffPrintBios(FFinstance* instance, FFBiosOptions* options);
|
|
void ffInitBiosOptions(FFBiosOptions* options);
|
|
bool ffParseBiosCommandOptions(FFBiosOptions* options, const char* key, const char* value);
|
|
void ffDestroyBiosOptions(FFBiosOptions* options);
|
|
void ffParseBiosJsonObject(FFinstance* instance, yyjson_val* module);
|