Ajout doc
This commit is contained in:
parent
65574403f3
commit
32b822555e
2 changed files with 12 additions and 2 deletions
|
@ -1,4 +1,7 @@
|
|||
/**
|
||||
/** Code de la commande echo
|
||||
* @file oui-dire.c
|
||||
* @author rick <rick@gnous.eu>
|
||||
* @date 2021
|
||||
*/
|
||||
|
||||
#include "oui-dire.h"
|
||||
|
@ -7,6 +10,10 @@
|
|||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
/**
|
||||
* echo(): Affiche sur la sortie standart un message
|
||||
* @args: message à afficher sur la sortie standart
|
||||
*/
|
||||
void echo(char *args)
|
||||
{
|
||||
char tmp = *args;
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
/**
|
||||
/** Fichier header pour la commande echo
|
||||
* @fire oui-dire.h
|
||||
* @author rick <rick@gnous.eu>
|
||||
* @date 2021
|
||||
*/
|
||||
|
||||
#ifndef _OUIDIRE_
|
||||
|
|
Loading…
Reference in a new issue