You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
324 B

#include <stdio.h>
typedef struct part_
{
char *name;
char *id;
char *idmask;
char *alg_tpl;
char *bsize;
long msize;
} part;
/* Some headers */
int select_part_by_name(char *name, part **ret);
part *text_to_part(char *text);
int select_part_from_file(char *name, char *file, part **ret);