Changeset 28ee877e in mainline


Ignore:
Timestamp:
2011-06-11T19:43:20Z (13 years ago)
Author:
Martin Sucha <sucha14@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ae45201
Parents:
6939edb
Message:

Rename tok_input to process_input

Location:
uspace/app/bdsh
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/bdsh/input.c

    r6939edb r28ee877e  
    6363 * invokes the built-in entry point (a[0]) passing all arguments in a[] to
    6464 * the handler */
    65 int tok_input(cliuser_t *usr)
     65int process_input(cliuser_t *usr)
    6666{
    6767        char *cmd[WORD_MAX];
  • uspace/app/bdsh/input.h

    r6939edb r28ee877e  
    77
    88extern void get_input(cliuser_t *);
    9 extern int tok_input(cliuser_t *);
     9extern int process_input(cliuser_t *);
    1010extern int input_init(void);
    1111
  • uspace/app/bdsh/scli.c

    r6939edb r28ee877e  
    9292                get_input(&usr);
    9393                if (NULL != usr.line) {
    94                         ret = tok_input(&usr);
     94                        ret = process_input(&usr);
    9595                        cli_set_prompt(&usr);
    9696                        usr.lasterr = ret;
Note: See TracChangeset for help on using the changeset viewer.