Changeset 051bc69a in mainline for uspace/app/sbi/src/input.c


Ignore:
Timestamp:
2010-05-08T08:10:44Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
640ffe6, c5cb943d
Parents:
25a76ab8
Message:

Update SBI to rev. 244.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/sbi/src/input.c

    r25a76ab8 r051bc69a  
    118118        }
    119119
     120        input->name = os_str_dup(fname);
    120121        input->str = NULL;
    121122        input->line_no = 0;
     
    136137        }
    137138
     139        input->name = "<user-input>";
    138140        input->str = NULL;
    139141        input->line_no = 0;
     
    154156        }
    155157
     158        input->name = "<builtin>";
    156159        input->str = str;
    157160        input->line_no = 0;
     
    226229/** Get number of the last provided line of input.
    227230 *
    228  * @param input         Input module.
     231 * @param input         Input object.
    229232 * @return              Line number of the last provided input line (counting
    230233 *                      from 1 up).
Note: See TracChangeset for help on using the changeset viewer.