aboutsummaryrefslogtreecommitdiffstats
path: root/src/add.c
blob: 9ffc852e29d6da4f930c3d60c0765b9198fca0bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "project.h"



void
add (DISK * d, int n, char *guid, int start, int end)
{
  GPT_header *h;
  GPT_entry *e;

  uint8_t buf[512];

  disk_read (d, buf, 1, 1);
  h = (GPT_header *) buf;

}