Add KFile base class constructor.
[bertos.git] / bertos / kern / kfile.h
index 10f98ef157376bf442ab2130f19b99b33df7f7b7..44c32b06b00e97b4342accf364550246e98a05f2 100644 (file)
@@ -221,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.
@@ -284,4 +285,5 @@ 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 */