mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 02:42:09 +02:00
13 lines
397 B
C
13 lines
397 B
C
#pragma once
|
|
|
|
#include "fastfetch.h"
|
|
#include <yyjson.h>
|
|
|
|
#define FF_OS_MODULE_NAME "OS"
|
|
|
|
void ffPrintOS(FFinstance* instance, FFOSOptions* options);
|
|
void ffInitOSOptions(FFOSOptions* options);
|
|
bool ffParseOSCommandOptions(FFOSOptions* options, const char* key, const char* value);
|
|
void ffDestroyOSOptions(FFOSOptions* options);
|
|
void ffParseOSJsonObject(FFinstance* instance, yyjson_val* module);
|