Changed C version...

This commit is contained in:
Ognjen Milan Robovic 2023-12-11 19:51:56 -05:00
parent 3c1f0d481a
commit 6309da6aee
2 changed files with 7 additions and 1 deletions

View File

@ -4,4 +4,10 @@ set -xe
gcc -g -ansi -Wall -Wextra -Wpedantic -Werror -Ofast -o xscii xscii.c
# clang -o xscii xscii.c
# tcc -o xscii xscii.c
# flang -o xscii xscii.f90
# gfortran -o xscii xscii.f90
# gnatmake -o xscii xscii.adb
exit

View File

@ -93,7 +93,7 @@ static void echo_name (int character, int colour, int effect) {
echo (name [character]);
out (" ", 40 - string_length (name [character]));
out (" ", 24 - string_length (name [character]));
terminal_cancel ();
}