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