aboutsummaryrefslogtreecommitdiffstats
path: root/src/prototypes.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/prototypes.h')
-rw-r--r--src/prototypes.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/prototypes.h b/src/prototypes.h
new file mode 100644
index 0000000..2a749a2
--- /dev/null
+++ b/src/prototypes.h
@@ -0,0 +1,12 @@
+/* hexdump.c */
+void hexdump(char *prefix, void *_d, size_t os, size_t oe);
+/* twa.c */
+ssize_t twa_get_parameter(int fd, int table_id, int parameter_id, void *data, size_t data_len);
+int twa_set_parameter(int fd, int table_id, int parameter_id, void *data, size_t data_len);
+/* twa_t.c */
+void tw_dt_to_tm(TW_DateTime *tw_dt, struct tm *tm);
+void tm_to_tw_dt(struct tm *tm, TW_DateTime *tw_dt);
+int main(int argc, char *argv[]);
+/* util.c */
+void *xmalloc(size_t s);
+/* version.c */