Home
last modified time | relevance | path

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

/DragonOS-0.1.5/user/apps/shell/
Dshell.c69 strcpy(real_history_commands[count_history - 1], input_buffer); in main_loop()
73 strcpy(history_commands[i], real_history_commands[i]); in main_loop()
79 strcpy(command_origin, input_buffer); in main_loop()
141 strcpy(buf, history_commands[current_command_index]); in change_command()
219 strcpy(history_commands[count_history], buf); in shell_readline()
224 strcpy(history_commands[current_command_index], buf); in shell_readline()
Dcmd.c517 strcpy(input_buffer, "exec /bin/about.elf\0"); in shell_cmd_about()
/DragonOS-0.1.5/user/libs/libc/src/
Dstring.c96 strcpy(dest + strlen(dest), src); in strcat()
107 char *strcpy(char *dst, const char *src) in strcpy() function
/DragonOS-0.1.5/kernel/src/libs/
Dstring.c11 char *strcpy(char *dst, const char *src) in strcpy() function
119 strcpy(dest + strlen(dest), src); in strcat()
/DragonOS-0.1.5/docs/userland/libc/apis/api-list/
Dstring.md23 ``char* strcpy(char *dst,const char *src)`` : 复制整个字符串
/DragonOS-0.1.5/user/libs/libc/src/include/export/
Dstring.h44 char* strcpy(char* dst, const char* src);
/DragonOS-0.1.5/kernel/src/common/
Dstring.h10 char *strcpy(char *dst, const char *src);
/DragonOS-0.1.5/kernel/src/libs/libUI/
Dtextui.c313 strcpy(textui_framework.name, name); in textui_init()
/DragonOS-0.1.5/docs/kernel/core_api/
Dkernel_api.md513 #### `char *strcpy(char *dst, const char *src)`