bdf2sfd

BDF to SFD converter, allowing to vectorize bitmap fonts
Log | Files | Refs | README | LICENSE

commit 9a107ab1817fd06eb7c1ddf527e701342465e606
parent 168e892a4b8a8df44518e08eecb5b29bc2411059
Author: Frederic Cambus <fred@statdns.com>
Date:   Thu,  6 Feb 2020 16:26:18 +0100

Indentation fixes.

Diffstat:
Msrc/bdftosfd.c | 42+++++++++++++++++++++---------------------
1 file changed, 21 insertions(+), 21 deletions(-)

diff --git a/src/bdftosfd.c b/src/bdftosfd.c @@ -154,31 +154,31 @@ main(int argc, char *argv[]) continue; case FONTBOUNDINGBOX: - value = strtok(NULL, " \t"); + value = strtok(NULL, " \t"); - if (value) - width = strtonum(value, 0, 32, &errstr); + if (value) + width = strtonum(value, 0, 32, &errstr); - if (errstr) - errx(EXIT_FAILURE, "Invalid value for FONTBOUNDINGBOX."); + if (errstr) + errx(EXIT_FAILURE, "Invalid value for FONTBOUNDINGBOX."); - value = strtok(NULL, " \t"); + value = strtok(NULL, " \t"); - if (value) - height = strtonum(value, 0, 64, &errstr); + if (value) + height = strtonum(value, 0, 64, &errstr); - if (errstr) - errx(EXIT_FAILURE, "Invalid value for FONTBOUNDINGBOX."); + if (errstr) + errx(EXIT_FAILURE, "Invalid value for FONTBOUNDINGBOX."); - if (!width || !height) - errx(EXIT_FAILURE, "Invalid value for FONTBOUNDINGBOX."); + if (!width || !height) + errx(EXIT_FAILURE, "Invalid value for FONTBOUNDINGBOX."); - xlength = 512 / width; - ylength = 1024 / height; + xlength = 512 / width; + ylength = 1024 / height; - mask = 1 << (stride[width] * 8 - 1); + mask = 1 << (stride[width] * 8 - 1); - continue; + continue; case FONT_ASCENT: value = strtok(NULL, "\n"); @@ -227,12 +227,12 @@ main(int argc, char *argv[]) case STARTCHAR: fprintf(stdout, "StartChar:"); - charname = strtok(NULL, "\n"); + charname = strtok(NULL, "\n"); - while (charname) { - fprintf(stdout, " %s\n", charname); - charname = strtok(NULL, " \n"); - } + while (charname) { + fprintf(stdout, " %s\n", charname); + charname = strtok(NULL, " \n"); + } continue;