Searched refs:strcmp (Results 1 – 9 of 9) sorted by relevance
/DragonOS-0.1.5/user/libs/libc/src/ |
D | stdio.c | 67 if (strcmp(mode, "r") == 0) in fopen() 69 else if (strcmp(mode, "r+") == 0) in fopen() 71 else if (strcmp(mode, "w") == 0) in fopen() 73 else if (strcmp(mode, "w+") == 0) in fopen() 75 else if (strcmp(mode, "a") == 0) in fopen() 77 else if (strcmp(mode, "a+") == 0) in fopen()
|
D | string.c | 13 int strcmp(const char *FirstPart, const char *SecondPart) in strcmp() function
|
/DragonOS-0.1.5/docs/userland/libc/apis/api-list/ |
D | string.md | 11 ``int strcmp(const char *a,const char *b)`` 比较字符串的字典序
|
/DragonOS-0.1.5/user/libs/libc/src/include/export/ |
D | string.h | 25 int strcmp(const char *FirstPart, const char *SecondPart);
|
/DragonOS-0.1.5/user/apps/shell/ |
D | cmd.c | 90 if (strcmp(main_cmd, shell_cmds[i].name) == 0) // 找到对应的命令号 in shell_find_cmd() 131 if (!strcmp(".", argv[1])) in shell_cmd_cd() 135 if (!strcmp("..", argv[1])) in shell_cmd_cd() 139 if (!strcmp("/", shell_current_path)) in shell_cmd_cd() 497 if (strcmp(argv[argc - 1], "&") != 0) in shell_cmd_exec() 554 if (argc == 2 && strcmp("-m", argv[1]) != 0) in shell_cmd_free()
|
/DragonOS-0.1.5/kernel/src/common/ |
D | string.h | 41 int strcmp(const char *FirstPart, const char *SecondPart);
|
/DragonOS-0.1.5/kernel/src/debug/ |
D | kallsyms.c | 99 if (strcmp(symbol_table[i].symbol, "_text")==0) in read_map() 101 if (strcmp(symbol_table[i].symbol, "_etext")==0) in read_map()
|
/DragonOS-0.1.5/kernel/src/libs/ |
D | string.c | 42 int strcmp(const char *FirstPart, const char *SecondPart) in strcmp() function
|
/DragonOS-0.1.5/docs/kernel/core_api/ |
D | kernel_api.md | 551 #### `int strcmp(char *FirstPart, char *SecondPart)`
|