change for use

Revision:
0:e882606c8174
diff -r 000000000000 -r e882606c8174 SDHandler.h
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/SDHandler.h	Tue Dec 07 07:54:45 2021 +0000
@@ -0,0 +1,17 @@
+#ifndef INC_SDHANDLER_H_
+#define INC_SDHANDLER_H_
+
+#include "stdint.h"
+#include "stdbool.h"
+
+bool SD_Initialize();
+
+bool SD_WriteMulti(uint32_t sector, uint8_t *data, uint16_t count);
+
+bool SD_ReadMulti(uint32_t sector, uint8_t *data, uint16_t count);
+
+bool SD_Write(uint32_t sector, uint8_t *data);
+
+bool SD_Read(uint32_t sector, uint8_t *data);
+
+#endif
\ No newline at end of file