| 183 | } |
| 184 | |
| 185 | static my_long_addr_t read_addr(char** buf) |
| 186 | { |
| 187 | uchar c; |
| 188 | char* p = *buf; |
| 189 | my_long_addr_t addr = 0; |
| 190 | |
| 191 | while((c = hex_val(*p++)) != HEX_INVALID) |
| 192 | addr = (addr << 4) + c; |
| 193 | |
| 194 | *buf = p; |
| 195 | return addr; |
| 196 | } |
| 197 | |
| 198 | static int init_sym_entry(SYM_ENTRY* se, char* buf) |
| 199 | { |
no test coverage detected