Skip to content

Commit

Permalink
Ajout des fonction aff_args() et free_args()
Browse files Browse the repository at this point in the history
  • Loading branch information
albinpoignot committed Dec 14, 2011
1 parent fab6673 commit d1e2e77
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 1 deletion.
41 changes: 41 additions & 0 deletions cmd.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,46 @@
#include "cmd.h"

/**
* Affiche les arguments de chacun des membres
*/
void aff_args( cmd* c )
{

int i, j;

// Parcours des membres
for(i=0; i <= cmd->nb_membres; i++ )
{
// Parcours des args
for(j=0; j <= cmd->nb_args_membres[i]; j++)
{
printf("%d\n", cmd->cmd_args[i][j]);
}
}

}


/**
* Désalloue l'espace allouée pour les arguments
*/
void free_args( cmd* c )
{

int i, j;

// Parcours des membres
for(i=0; i <= cmd->nb_membres; i++ )
{
// Parcours des args
for(j=0; j <= cmd->nb_args_membres[i]; j++)
{
free(cmd->cmd_args[i][j]);
}
}

}

void parse_args( cmd * c )
{
char str[] ="ls -l";
Expand Down
10 changes: 9 additions & 1 deletion cmd.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,12 @@ typedef struct
int **type_redir; // Stocke le sens des redirections
} cmd;

void parse_args( cmd* c );
void aff_args( cmd* c ); // ToDo
void free_args( cmd* c ); // ToDo
void parse_args( cmd* c );
void parse_membres( char* chaine, cmd* ma_cmd ); // ToDo
void aff_membres( cmd* ma_cmd ); // ToDo
void free_membres( cmd* ma_cmd ); // ToDo
int parse_redir( unsigned int i, cmd* c ); // ToDo
void free_redir( cmd* c );
void aff_redir( cmd c, int i ); // ToDo

0 comments on commit d1e2e77

Please sign in to comment.