Move kfile interface to the io/ directory.
[bertos.git] / bertos / mware / ini_reader.h
index 828c0f633ab40009ed1492e03834a88388f6cc85..377659be5904099c8d31c64507bc8c86ebde7694 100644 (file)
@@ -40,7 +40,6 @@
  * - no comments are allowed inside a line with key=value pair.
  * - every line that doesn't contain a '=' or doesn't start with '[' will be ignored.
  *
- * \version $Id$
  * \author Luca Ottaviano <lottaviano@develer.com>
  *
  * $WIZ$ module_name = "ini_reader"
@@ -51,7 +50,7 @@
 #ifndef INI_READER_H
 #define INI_READER_H
 
-#include <kern/kfile.h>
+#include <io/kfile.h>
 
 /**
  * \brief Returns the value for the given string in char* format.
@@ -68,4 +67,7 @@
  */
 int ini_getString(KFile *fd, const char *section, const char *key, const char *default_value, char *buf, size_t size);
 
+int ini_reader_testSetup(void);
+int ini_reader_testRun(void);
+int ini_reader_testTearDown(void);
 #endif /* INI_READER_H */