summaryrefslogtreecommitdiff
path: root/include/cmd_fat.h
diff options
context:
space:
mode:
authorLeo C2018-07-21 13:27:15 +0200
committerLeo C2018-07-21 13:27:15 +0200
commit7eecbdacec66226ebc3959411883aeaebcf9791d (patch)
tree1e4f850854c5f4f73410a6e85ecc761544ec5c8a /include/cmd_fat.h
parent5caa8c2b8906f17ca97aad2be3d746c3b5fef8f3 (diff)
downloadz180-stamp-7eecbdacec66226ebc3959411883aeaebcf9791d.zip
Remove extern declarations from command_tbl.c, create .h files for that.
# Conflicts: # avr/env.c
Diffstat (limited to 'include/cmd_fat.h')
-rw-r--r--include/cmd_fat.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/include/cmd_fat.h b/include/cmd_fat.h
index 66be559..ed96a52 100644
--- a/include/cmd_fat.h
+++ b/include/cmd_fat.h
@@ -1,5 +1,5 @@
/*
- * (C) Copyright 2014 Leo C. <erbl259-lmu@yahoo.de>
+ * (C) Copyright 2014-2018 Leo C. <erbl259-lmu@yahoo.de>
*
* SPDX-License-Identifier: GPL-2.0
*/
@@ -7,6 +7,12 @@
#ifndef CMD_FAT_H
#define CMD_FAT_H
+#include "command.h"
+
+extern cmd_tbl_t cmd_tbl_fat[];
+
+command_ret_t do_fat(cmd_tbl_t *, uint_fast8_t, int, char * const []);
+
void setup_fatfs(void);
#endif /* CMD_FAT_H */