Changes in kernel/generic/src/console/kconsole.c [7a0359b:c0f13d2] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/console/kconsole.c
r7a0359b rc0f13d2 160 160 161 161 /** Print count times a character */ 162 NO_TRACEstatic void print_cc(wchar_t ch, size_t count)162 static void print_cc(wchar_t ch, size_t count) 163 163 { 164 164 size_t i; … … 168 168 169 169 /** Try to find a command beginning with prefix */ 170 NO_TRACE static const char *cmdtab_search_one(const char *name, 171 link_t **startpos) 170 static const char *cmdtab_search_one(const char *name, link_t **startpos) 172 171 { 173 172 size_t namelen = str_length(name); … … 203 202 * 204 203 */ 205 NO_TRACEstatic int cmdtab_compl(char *input, size_t size)204 static int cmdtab_compl(char *input, size_t size) 206 205 { 207 206 const char *name = input; … … 238 237 } 239 238 240 NO_TRACEstatic wchar_t *clever_readline(const char *prompt, indev_t *indev)239 static wchar_t *clever_readline(const char *prompt, indev_t *indev) 241 240 { 242 241 printf("%s> ", prompt); … … 423 422 } 424 423 425 NO_TRACE static bool parse_int_arg(const char *text, size_t len, 426 unative_t *result) 424 static bool parse_int_arg(const char *text, size_t len, unative_t *result) 427 425 { 428 426 bool isaddr = false; … … 509 507 * 510 508 */ 511 NO_TRACE static bool parse_argument(const char *cmdline, size_t size, 512 size_t *start, size_t *end) 509 static bool parse_argument(const char *cmdline, size_t size, size_t *start, size_t *end) 513 510 { 514 511 ASSERT(start != NULL); … … 546 543 * 547 544 */ 548 NO_TRACEstatic cmd_info_t *parse_cmdline(const char *cmdline, size_t size)545 static cmd_info_t *parse_cmdline(const char *cmdline, size_t size) 549 546 { 550 547 size_t start = 0;
Note:
See TracChangeset
for help on using the changeset viewer.