besched: Add and use sched_replace().
[libfirm] / include / libfirm / irio.h
index a188072..1e38ad9 100644 (file)
 
 /**
  * @file
- * @brief   Import/export textual representation of firm.
+ * @brief   Input/Output textual representation of firm.
  * @author  Moritz Kroll
- *
- * Note: The file format is not considered stable yet. So expect
- * incompatibilities between file formats of different libfirm versions.
  */
 #ifndef FIRM_IR_IRIO_H
 #define FIRM_IR_IRIO_H
 #include "firm_types.h"
 #include "begin.h"
 
+/**
+ * @defgroup irio Input and Output
+ * @note The file format is not considered stable yet. So expect
+ *       incompatibilities between file formats of different libfirm versions.
+ * @{
+ */
+
 /**
  * Exports the whole irp to the given file in a textual form.
  * Exports all types, all ir graphs, and the constant graph.
@@ -62,6 +66,8 @@ FIRM_API int ir_import(const char *filename);
  */
 FIRM_API int ir_import_file(FILE *input, const char *inputname);
 
+/** @} */
+
 #include "end.h"
 
 #endif