Files
fastfetch/src/modules/custom.c
T
2022-07-25 13:15:01 +02:00

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);
}