Ajout doc

This commit is contained in:
rick 2021-02-22 00:00:47 +01:00
parent 65574403f3
commit 32b822555e
Signed by: Rick
GPG Key ID: 2B593F087240EE99
2 changed files with 12 additions and 2 deletions

View File

@ -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;

View File

@ -1,4 +1,7 @@
/**
/** Fichier header pour la commande echo
* @fire oui-dire.h
* @author rick <rick@gnous.eu>
* @date 2021
*/
#ifndef _OUIDIRE_