Home
last modified time | relevance | path

Searched refs:history_commands (Results 1 – 1 of 1) sorted by relevance

/DragonOS-0.1.2/user/apps/shell/
Dshell.c26 char history_commands[MEM_HISTORY][INPUT_BUFFER_SIZE]; variable
71 memset(history_commands, 0, sizeof(history_commands)); in main_loop()
73 strcpy(history_commands[i], real_history_commands[i]); in main_loop()
141 strcpy(buf, history_commands[current_command_index]); in change_command()
185 memset(history_commands[current_command_index - 1], 0, in shell_readline()
186 sizeof(history_commands[current_command_index - 1])); in shell_readline()
218 memset(history_commands[count_history], 0, sizeof(history_commands[count_history])); in shell_readline()
219 strcpy(history_commands[count_history], buf); in shell_readline()
223 …memset(history_commands[current_command_index], 0, sizeof(history_commands[current_command_index])… in shell_readline()
224 strcpy(history_commands[current_command_index], buf); in shell_readline()