Searched refs:strcpy (Results 1 – 9 of 9) sorted by relevance
/DragonOS-0.1.5/user/apps/shell/ |
D | shell.c | 69 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()
|
D | cmd.c | 517 strcpy(input_buffer, "exec /bin/about.elf\0"); in shell_cmd_about()
|
/DragonOS-0.1.5/user/libs/libc/src/ |
D | string.c | 96 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/ |
D | string.c | 11 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/ |
D | string.md | 23 ``char* strcpy(char *dst,const char *src)`` : 复制整个字符串
|
/DragonOS-0.1.5/user/libs/libc/src/include/export/ |
D | string.h | 44 char* strcpy(char* dst, const char* src);
|
/DragonOS-0.1.5/kernel/src/common/ |
D | string.h | 10 char *strcpy(char *dst, const char *src);
|
/DragonOS-0.1.5/kernel/src/libs/libUI/ |
D | textui.c | 313 strcpy(textui_framework.name, name); in textui_init()
|
/DragonOS-0.1.5/docs/kernel/core_api/ |
D | kernel_api.md | 513 #### `char *strcpy(char *dst, const char *src)`
|