mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 02:42:09 +02:00
c888254f70
Also fix some bugs found when refactoring
12 lines
415 B
C
12 lines
415 B
C
#pragma once
|
|
|
|
#include "fastfetch.h"
|
|
|
|
#define FF_COMMAND_MODULE_NAME "Command"
|
|
|
|
void ffPrintCommand(FFCommandOptions* options);
|
|
void ffInitCommandOptions(FFCommandOptions* options);
|
|
bool ffParseCommandCommandOptions(FFCommandOptions* options, const char* key, const char* value);
|
|
void ffDestroyCommandOptions(FFCommandOptions* options);
|
|
void ffParseCommandJsonObject(FFCommandOptions* options, yyjson_val* module);
|