Changeset 02dcb20 in mainline
- Timestamp:
- 2012-06-27T20:32:59Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 349e510d
- Parents:
- 600f5d1
- Location:
- uspace
- Files:
-
- 2 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bithenge/script.c
r600f5d1 r02dcb20 165 165 if (ch == '\0') { 166 166 state->token = TOKEN_EOF; 167 } else if (ch == '#') { 168 while (state->buffer[state->buffer_pos] != '\n' 169 && state->buffer[state->buffer_pos] != '\0') { 170 state->buffer_pos++; 171 fill_buffer(state); 172 } 173 next_token(state); 174 return; 167 175 } else if (isspace(ch)) { 168 176 // Will eventually reach the '\0' at the end
Note:
See TracChangeset
for help on using the changeset viewer.