* Examine (print) data. */ ARGSUSED*/
| 54 | */ |
| 55 | /*ARGSUSED*/ |
| 56 | void |
| 57 | db_examine_cmd(db_expr_t addr, bool have_addr, db_expr_t count, char *modif) |
| 58 | { |
| 59 | if (modif[0] != '\0') |
| 60 | db_strcpy(db_examine_format, modif); |
| 61 | |
| 62 | if (count == -1) |
| 63 | count = 1; |
| 64 | |
| 65 | db_examine((db_addr_t) addr, db_examine_format, count); |
| 66 | } |
| 67 | |
| 68 | static void |
| 69 | db_examine(db_addr_t addr, char *fmt, int count) |
nothing calls this directly
no test coverage detected