aplat

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

commit fb223e91cebb6bbd0a8a762c63963fb3adac22d7
parent 5d9fe716d79702e00e782f85ea53dabd79e8c462
Auteur: Selve <selve@asteride.xyz>
Date:   Tue, 23 Jan 2024 17:45:43 -0500

modifications esthétiques dans le code source

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

diff --git a/aplat.c b/aplat.c @@ -33,10 +33,10 @@ static int afficher_ligne(struct tampon *, struct tampon *, int *); static int guillemets(FILE *, struct tampon *); static int bloc(FILE *, struct tampon *); -char *nom_prog; /* nom du programme */ +char *nom_prog; /* nom du programme */ -struct tampon etq; /* tampon à étiquettes */ -struct tampon ctn; /* tampon à texte */ +struct tampon etq; /* tampon à étiquettes */ +struct tampon ctn; /* tampon à texte */ int main(int argc, char **argv) @@ -46,7 +46,7 @@ main(int argc, char **argv) #ifdef __OpenBSD__ if (unveil(I18N_DOS, "r") < 0 || - unveil("/usr/share/locale/UTF-8/LC_CTYPE", "r") < 0) { + unveil("/usr/share/locale/UTF-8/LC_CTYPE", "r") < 0) { fprintf(stderr, _("%s: erreur avec unveil()\n"), nom_prog); return 1; } diff --git a/tampon.c b/tampon.c @@ -5,6 +5,7 @@ #include <stdio.h> +/* invariants de la structure tampon */ #define INVARIANTS_TP(t) \ (assert((t) != NULL), \ assert((t)->tp != NULL), \ diff --git a/tampon.h b/tampon.h @@ -12,8 +12,8 @@ struct tampon { size_t tll; /* taille du tampon */ }; -int tp_init(struct tampon *, size_t taille); -int tp_ecr(char c, struct tampon *); +int tp_init(struct tampon *, size_t); +int tp_ecr(char, struct tampon *); void tp_eff(struct tampon *); void tp_bloc_rec(struct tampon *); int tp_etq_rec(struct tampon *);