summaryrefslogtreecommitdiff
path: root/usb-i2c-sl018/keystore.h
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2013-02-06 22:00:08 +0000
committerChristian Pointner <equinox@spreadspace.org>2013-02-06 22:00:08 +0000
commit3fb7cae1a71c87c719894d220bd4a0651a9402e7 (patch)
tree203c1a582d29dd033f564a79368813376468c85b /usb-i2c-sl018/keystore.h
parentcleanup (diff)
entire code now uses stdin and stdout (no stdio any more)
git-svn-id: https://svn.spreadspace.org/avr/trunk@137 aa12f405-d877-488e-9caf-2d797e2a1cc7
Diffstat (limited to 'usb-i2c-sl018/keystore.h')
-rw-r--r--usb-i2c-sl018/keystore.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/usb-i2c-sl018/keystore.h b/usb-i2c-sl018/keystore.h
index a3b42ad..b2adfd6 100644
--- a/usb-i2c-sl018/keystore.h
+++ b/usb-i2c-sl018/keystore.h
@@ -23,9 +23,11 @@
#ifndef R3TUER_keystore_h_INCLUDED
#define R3TUER_keystore_h_INCLUDED
-#include <stdio.h>
-void flash_keystore_from_stdio(FILE * stdio);
-void dump_keystore_to_stdio(FILE * stdio);
+
+#include <stdint.h>
+
+void flash_keystore_from_stdio(void);
+void dump_keystore_to_stdio(void);
uint8_t keystore_check_card(const uint8_t * uid, uint8_t uid_len);
#endif