mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 02:42:09 +02:00
29 lines
772 B
C
29 lines
772 B
C
#include "common/printing.h"
|
|
#include "modules/break/break.h"
|
|
|
|
void ffPrintBreak(FF_MAYBE_UNUSED FFBreakOptions* options)
|
|
{
|
|
ffLogoPrintLine();
|
|
putchar('\n');
|
|
}
|
|
|
|
void ffInitBreakOptions(FF_MAYBE_UNUSED FFBreakOptions* options)
|
|
{
|
|
ffOptionInitModuleBaseInfo(&options->moduleInfo, FF_BREAK_MODULE_NAME, ffParseBreakCommandOptions, ffParseBreakJsonObject, ffPrintBreak, NULL);
|
|
}
|
|
|
|
bool ffParseBreakCommandOptions(FF_MAYBE_UNUSED FFBreakOptions* options, FF_MAYBE_UNUSED const char* key, FF_MAYBE_UNUSED const char* value)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
void ffDestroyBreakOptions(FF_MAYBE_UNUSED FFBreakOptions* options)
|
|
{
|
|
}
|
|
|
|
void ffParseBreakJsonObject(FF_MAYBE_UNUSED FFBreakOptions* options, FF_MAYBE_UNUSED yyjson_val* module)
|
|
{
|
|
ffPrintBreak(options);
|
|
return;
|
|
}
|