From 91bb43a64f479c1fe2dbb54500912049505875c1 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Mon, 28 Dec 2020 23:48:24 -0500 Subject: Add hilex IRC formatter --- bin/hilex/ansi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin/hilex/ansi.c') diff --git a/bin/hilex/ansi.c b/bin/hilex/ansi.c index 6a5600d4..6ef41f22 100644 --- a/bin/hilex/ansi.c +++ b/bin/hilex/ansi.c @@ -29,7 +29,7 @@ static const char *SGR[ClassCap] = { [StringFormat] = "36;1;96", }; -static void format(const char *opts[], enum Class class, const char *text) { +static void ansiFormat(const char *opts[], enum Class class, const char *text) { (void)opts; if (!SGR[class]) { printf("%s", text); @@ -42,4 +42,4 @@ static void format(const char *opts[], enum Class class, const char *text) { if (*text) printf("\33[%sm%s\33[m", SGR[class], text); } -const struct Formatter FormatANSI = { .format = format }; +const struct Formatter FormatANSI = { .format = ansiFormat }; -- cgit 1.4.1