Changeset c47e1a8 in mainline for uspace/app/sbi/src/lex.h
- Timestamp:
- 2010-05-21T07:50:04Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d51ee2b
- Parents:
- cf8cc36 (diff), 15b592b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 moved
-
uspace/app/sbi/src/lex.h (moved) (moved from boot/arch/ia64/loader/types.h ) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sbi/src/lex.h
rcf8cc36 rc47e1a8 1 1 /* 2 * Copyright (c) 20 06 Martin Decky2 * Copyright (c) 2010 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 #ifndef BOOT_ia64_TYPES_H_30 #define BOOT_ia64_TYPES_H_29 #ifndef LEX_H_ 30 #define LEX_H_ 31 31 32 #include <gentypes.h>32 #include "mytypes.h" 33 33 34 typedef signed char int8_t; 34 void lclass_print(lclass_t lclass); 35 void lem_print(lem_t *lem); 36 void lem_print_coords(lem_t *lem); 35 37 36 typedef unsigned char uint8_t; 37 typedef unsigned short uint16_t; 38 typedef unsigned int uint32_t; 39 typedef unsigned long uint64_t; 40 41 typedef uint64_t uintptr_t; 42 typedef uint64_t unative_t; 38 void lex_init(lex_t *lex, struct input *input); 39 void lex_next(lex_t *lex); 40 lem_t *lex_get_current(lex_t *lex); 41 lem_t *lex_peek_prev(lex_t *lex); 43 42 44 43 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
