Avoid using printf-like functions when not necessary; this avoids
scanning the string before writing it.
Can be done for more files as well. To minimize the diff and logic
differences, using only fputs instead of a combination of fputc and
fputs might make sense.
Avoid using printf-like functions when not necessary; this avoids scanning the string before writing it.
Can be done for more files as well. To minimize the diff and logic differences, using only fputs instead of a combination of fputc and fputs might make sense.