mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 10:24:58 +02:00
9 lines
198 B
C
9 lines
198 B
C
#include "fastfetch.h"
|
|
#include "common/printing.h"
|
|
|
|
void ffPrintCustom(FFinstance* instance, const char* key, const char* value)
|
|
{
|
|
ffPrintLogoAndKey(instance, key, 0, NULL);
|
|
puts(value);
|
|
}
|