我必须执行 hist 命令,包括 !k 和 !!
2个功能:
void addInHistory(char **history,char *command,int *list_size,int history_capacity)
{
int index=*(list_size);
if(command[0]!='\n')
{
if(index==history_capacity-1)
{
printf("History is full.Deleting commands.");
}
else
{
char current_command[COMMAND_SIZE];
strcpy(current_command,command);
history[index++]=current_command;
}
}
}
void printHistory(char **history,int size)
{
int i;
for(int i=0;i<=size;i++)
{
printf("%d. %s\n",i+1,history[i]);
}
}
任何帮助,将不胜感激。