aplat

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

commit b73e6be7f78bb28817984d37c8822d9ec18178d5
parent ff1e231a420b11213e8afa284567f4371123c6fe
Auteur: Selve <selve@asteride.xyz>
Date:   Sat, 20 Jan 2024 17:04:48 -0500

modifications mineures

Diffstat:
Maplat.c | 9+++++----
Mtampon.h | 6+++---
2 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/aplat.c b/aplat.c @@ -189,7 +189,8 @@ prch_jeton(FILE *f, struct tampon *tp, int tp_type) if (c == EOF) return EOF; if (npar == NGUI) { - while (c != '\n') /* ignorer le reste de la ligne */ + /* ignorer le reste de la ligne */ + while (c != '\n') if ((c = getc(f)) == EOF) return EOF; if (bloc(f, tp) == EOF) @@ -233,9 +234,9 @@ afficher_ligne(struct tampon *etq, struct tampon *ctn, int *draps) { char *c; - assert(etq != NULL); - assert(ctn != NULL); - assert(draps != NULL); + assert(etq != NULL); + assert(ctn != NULL); + assert(draps != NULL); assert(etq->tp != NULL); assert(ctn->tp != NULL); assert(etq->pc != NULL); diff --git a/tampon.h b/tampon.h @@ -7,9 +7,9 @@ #define ETQ_SEP_FCT 1 /* séparateur fictif (échappé) */ struct tampon { - char *tp; /* le tampon lui-même */ - char *pc; /* ptr vers la prochaine cellule libre */ - size_t tll; /* taille du tampon */ + char *tp; /* le tampon lui-même */ + char *pc; /* ptr vers la prochaine cellule libre */ + size_t tll; /* taille du tampon */ }; int tp_init(struct tampon *, size_t taille);