Changeset 28ee877e in mainline
- Timestamp:
- 2011-06-11T19:43:20Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ae45201
- Parents:
- 6939edb
- Location:
- uspace/app/bdsh
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/input.c
r6939edb r28ee877e 63 63 * invokes the built-in entry point (a[0]) passing all arguments in a[] to 64 64 * the handler */ 65 int tok_input(cliuser_t *usr)65 int process_input(cliuser_t *usr) 66 66 { 67 67 char *cmd[WORD_MAX]; -
uspace/app/bdsh/input.h
r6939edb r28ee877e 7 7 8 8 extern void get_input(cliuser_t *); 9 extern int tok_input(cliuser_t *);9 extern int process_input(cliuser_t *); 10 10 extern int input_init(void); 11 11 -
uspace/app/bdsh/scli.c
r6939edb r28ee877e 92 92 get_input(&usr); 93 93 if (NULL != usr.line) { 94 ret = tok_input(&usr);94 ret = process_input(&usr); 95 95 cli_set_prompt(&usr); 96 96 usr.lasterr = ret;
Note:
See TracChangeset
for help on using the changeset viewer.