kolibrios/programs/system/shell/cmd/cmd_history.c

14 lines
151 B
C
Raw Normal View History

int cmd_history(char arg[])
{
int i;
for (i = 0; i < CMD_HISTORY_NUM_REAL; i++)
{
printf("%s\n", CMD_HISTORY[i]);
}
return TRUE;
}