#include "project.h"



void
show (DISK * d)
{
  MBR *m;
  GPT_headers h;
  GPT_entry *e;

  uint8_t buf[512];

  disk_read (d, buf, 0, 1);
  m = (MBR *) buf;
  mbr_show (m);

  h = headers_get (d);
  header_show (d, &h.header);

  header_show (d, &h.alt_header);

}