Files
fastfetch/src/modules/command/command.h
T

12 lines
282 B
C
Raw Normal View History

2023-03-07 19:27:49 +08:00
#pragma once
#include "option.h"
2023-03-07 19:27:49 +08:00
2023-03-15 16:54:50 +08:00
#define FF_COMMAND_MODULE_NAME "Command"
void ffPrintCommand(FFCommandOptions* options);
2023-03-07 19:27:49 +08:00
void ffInitCommandOptions(FFCommandOptions* options);
void ffDestroyCommandOptions(FFCommandOptions* options);
2025-08-03 22:50:56 +08:00
extern FFModuleBaseInfo ffCommandModuleInfo;