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)