10 lines
248 B
C
10 lines
248 B
C
|
/*********************************/
|
||
|
/* Specification afficher_chaine */
|
||
|
/*********************************/
|
||
|
#include <stdio.h>
|
||
|
#include "util_afficher.h"
|
||
|
void afficher_chaine (char * chaine) {
|
||
|
printf ("\n\n*** %s ! ***\n\n", chaine);
|
||
|
}
|
||
|
|