aplat

Documents structurés pour Unix
git clone git://git.asteride.xyz/~ldp/aplat.git
Journaux | Fichiers | Références | LISEZ-MOI | LICENCE

commit d1f7c1dcd46aebd3a5d81e5366d73e189888a501
parent 7b68f319a9f67774c31c712db03dc05034a1b45a
Auteur: Selve <selve@asteride.xyz>
Date:   Tue, 23 Jan 2024 12:15:54 -0500

rennommage d'une variable et d'un macro

Diffstat:
Maplat.c | 22+++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/aplat.c b/aplat.c @@ -14,7 +14,7 @@ #define DRAP_OUV 01 /* parenthèse ouvrante */ #define DRAP_FRM 02 /* parenthèse fermante */ -#define NGUI 3 /* nombre de guillemets pour ouvrir ou fermer un bloc */ +#define NGUI_BLOC 3 /* nombre de guillemets pour ouvrir ou fermer un bloc */ #define TP_TYPE_ETQ 0 /* tampon contenant des étiquettes */ #define TP_TYPE_CTN 1 /* tampon contenant du « contenu » */ @@ -193,7 +193,7 @@ static int prch_jeton(FILE *f, struct tampon *tp, int tp_type) { int c; - int npar; /* nombre de guillemets */ + int ngui; /* nombre de guillemets */ assert(f != NULL); assert(tp != NULL); @@ -219,10 +219,10 @@ prch_jeton(FILE *f, struct tampon *tp, int tp_type) return JT_ATM; case '"': /* compter le nombre de guillemets */ - for (npar = 1; (c = getc(f)) == '"'; npar++) + for (ngui = 1; (c = getc(f)) == '"'; ngui++) if (c == EOF) return EOF; - if (npar == NGUI) { + if (ngui == NGUI_BLOC) { /* ignorer le reste de la ligne */ while (c != '\n') if ((c = getc(f)) == EOF) @@ -232,7 +232,7 @@ prch_jeton(FILE *f, struct tampon *tp, int tp_type) continue; } ungetc(c, f); - if (npar % 2 == 1) { /* nombre impaire de guillemets */ + if (ngui % 2 == 1) { /* nombre impaire de guillemets */ if (guillemets(f, tp) == EOF) return EOF; } @@ -351,7 +351,7 @@ static int bloc(FILE *f, struct tampon *tp) { int c; - int npar; + int ngui; int ncar; assert(f != NULL); @@ -371,12 +371,12 @@ bloc(FILE *f, struct tampon *tp) continue; case '"': /* compter le nombre de guillemets */ - for (npar = 1; (c = getc(f)) == '"' && npar < NGUI; - npar++) + for (ngui = 1; (c = getc(f)) == '"' && ngui < NGUI_BLOC; + ngui++) ; - if (c != '!' || npar < NGUI) + if (c != '!' || ngui < NGUI_BLOC) ungetc(c, f); - if (npar == NGUI) { + if (ngui == NGUI_BLOC) { if (c != '!') { /* si le bloc n'est pas vide */ if (ncar != tp_ncar(tp)) @@ -384,7 +384,7 @@ bloc(FILE *f, struct tampon *tp) return c; } } - while (npar-- > 0) + while (ngui-- > 0) tp_ecr('"', tp); continue; case '\\':