Change some strings.
[bertos.git] / bertos / kern / kfile.h
index 3b7f5a920d7e96756840246c0e677d11a648e975..44c32b06b00e97b4342accf364550246e98a05f2 100644 (file)
  * \author Francesco Sacchi <batt@develer.com>
  * \author Daniele Basile <asterix@develer.com>
  *
- * $WIZARD_MODULE = {
- * "name" : "kfile",
- * "depends" : [],
- * "configuration" : "bertos/cfg/cfg_kfile.h"
- * }
+ * $WIZ$ module_name = "kfile"
+ * $WIZ$ module_configuration = "bertos/cfg/cfg_kfile.h"
+ * $WIZ$ module_depends = "timer", "formatwr"
  */
 
 #ifndef KERN_KFILE_H
@@ -223,6 +221,7 @@ int kfile_print(struct KFile *fd, const char *s);
 int kfile_gets(struct KFile *fd, char *buf, int size);
 int kfile_gets_echo(struct KFile *fd, char *buf, int size, bool echo);
 void kfile_resync(KFile *fd, mtime_t delay);
+void kfile_init(struct KFile *fd);
 
 /**
  * Interface functions for KFile access.
@@ -282,7 +281,9 @@ INLINE void kfile_clearerr(struct KFile *fd)
  * Kfile test function.
  */
 int kfile_testSetup(void);
+int kfile_testRun(void);
 int kfile_testRunGeneric(KFile *fd, uint8_t *test_buf, uint8_t *save_buf, size_t size);
 int kfile_testTearDown(void);
 
+
 #endif /* KERN_KFILE_H */