"depot M311"

This commit is contained in:
JunkJumper
2020-05-02 00:01:44 +02:00
parent 16e128821d
commit 7c43e9c334
81 changed files with 2045 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
#include <stdio.h>
#include <stdlib.h>
#include "util_afficher.h"
int main (int argc, char * argv[], char * envp[])
{
if (argc != 2) {fprintf (stderr, "\nSyntaxe : %s <chaine> \n\n"); exit (1); }
afficher_chaine(argv[1]);
}

View File

@@ -0,0 +1,9 @@
/*********************************/
/* Specification afficher_chaine */
/*********************************/
#include <stdio.h>
#include "util_afficher.h"
void afficher_chaine (char * chaine) {
printf ("\n\n*** %s ! ***\n\n", chaine);
}

View File

@@ -0,0 +1,5 @@
/*********************************/
/* Specification afficher_chaine */
/*********************************/
void afficher_chaine (char * chaine);