rulimine/stage2/lib/part.h
2020-09-14 19:32:11 +02:00

14 lines
199 B
C

#ifndef __LIB__PART_H__
#define __LIB__PART_H__
#include <stdint.h>
struct part {
uint64_t first_sect;
uint64_t sect_count;
};
int get_part(struct part *part, int drive, int partition);
#endif