aboutsummaryrefslogtreecommitdiffstats
path: root/src/prototypes.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/prototypes.h')
-rw-r--r--src/prototypes.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/prototypes.h b/src/prototypes.h
index e69de29..a3f15d4 100644
--- a/src/prototypes.h
+++ b/src/prototypes.h
@@ -0,0 +1,14 @@
+/* gpt.c */
+int main(int argc, char *argv[]);
+/* version.c */
+/* util.c */
+void hexdump(FILE *f, uint8_t *data, int s, int l);
+/* guid.c */
+int guid_cmp(GUID *a, GUID *b);
+char *guid_to_a(GUID g);
+int a_to_guid(char *a, GUID *g);
+GUID random_guid(void);
+/* crc.c */
+uint32_t crc32(uint32_t crc, const uint8_t *buf, int len);
+/* header.c */
+void header_print(uint8_t *buf);