forked from forth32/balong-usbdload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ptable-list.c
42 lines (30 loc) · 949 Bytes
/
ptable-list.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Программа для замены таблицы разделов в загрузчике usbloader
//
//
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "parts.h"
//############################################################################################################3
void main(int argc, char* argv[]) {
struct ptable_t ptable;
FILE* in;
if (argc != 2) {
printf("\n - Не указано имя файла с таблицей разделов\n");
return;
}
in=fopen(argv[optind],"r+");
if (in == 0) {
printf("\n Ошибка открытия файла %s\n",argv[optind]);
return;
}
// читаем текущую таблицу
fread(&ptable,sizeof(ptable),1,in);
if (strncmp(ptable.head, "pTableHead", 16) != 0) {
printf("\n Файл не является таблицей разделов\n");
return ;
}
show_map(ptable);
}