mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 02:14:37 +02:00
12208b2c7c
Also fix some bugs found when refactoring
14 lines
537 B
C
14 lines
537 B
C
#pragma once
|
|
|
|
#include "fastfetch.h"
|
|
|
|
#define FF_KERNEL_MODULE_NAME "Kernel"
|
|
|
|
void ffPrintKernel(FFKernelOptions* options);
|
|
void ffInitKernelOptions(FFKernelOptions* options);
|
|
bool ffParseKernelCommandOptions(FFKernelOptions* options, const char* key, const char* value);
|
|
void ffDestroyKernelOptions(FFKernelOptions* options);
|
|
void ffParseKernelJsonObject(FFKernelOptions* options, yyjson_val* module);
|
|
void ffGenerateKernelJson(FFKernelOptions* options, yyjson_mut_doc* doc, yyjson_mut_val* module);
|
|
void ffPrintKernelHelpFormat(void);
|