Add comment.
[bertos.git] / kern / kfile.h
index e9d4a5c8c43740e352d9e45259a16d67e873f2b5..44832da37159ebb27373a5847ce4da55a4a07e91 100644 (file)
@@ -83,4 +83,15 @@ typedef struct _KFile
        uint32_t                size;
 } KFile;
 
+
+/*
+ * Generic implementation of seek function.
+ */
+int32_t kfile_seek(struct _KFile *fd, kfile_off_t offset, KSeekMode whence);
+
+/*
+ * Kfile test function
+ */
+bool kfile_test(uint8_t *buf, size_t _size , uint8_t *save_buf, size_t save_buf_size);
+
 #endif /* MWARE_KFILE_H */