mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 02:14:37 +02:00
16 lines
402 B
C
16 lines
402 B
C
#pragma once
|
|
|
|
#include "fastfetch.h"
|
|
|
|
// Things only needed by fastfetch
|
|
typedef struct FFdata
|
|
{
|
|
FFstrbuf structure;
|
|
bool configLoaded;
|
|
} FFdata;
|
|
|
|
bool ffParseModuleOptions(const char* key, const char* value);
|
|
void ffPrepareCommandOption(FFdata* data);
|
|
void ffPrintCommandOption(FFdata* data, yyjson_mut_doc* jsonDoc);
|
|
void ffMigrateCommandOptionToJsonc(FFdata* data, yyjson_mut_doc* jsonDoc);
|