From 4bcd92e441f285768711d5ed128d123b901119cb Mon Sep 17 00:00:00 2001 From: Supermjork Date: Tue, 22 Aug 2023 23:35:31 +0300 Subject: [PATCH] farmmmm --- special.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/special.c b/special.c index 690218a..1b4b549 100644 --- a/special.c +++ b/special.c @@ -21,7 +21,7 @@ int printf_rot13(va_list args) char *s = va_arg(args, char*); /* basic alphabet */ char alpha[] = {"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"}; - /* shifted by 13*/ + /* shifted by 13 */ char beta[] = {"nopqrstuvwxyzabcdefghijklmNOPQRSTUVWXYZABCDEFGHIJKLM"}; if (s == NULL)