added basic ssl support to ircu
[ircu2.10.12-pk.git] / include / fileio.h
index f7bf6c20a1fcb0877f42edb8c6ea154e09f265cc..a2fcc718afa74523d6a359530ebe3004a954d0ef 100644 (file)
@@ -1,7 +1,6 @@
-/*
- * fileio.h
- *
- * $Id$
+/** @file fileio.h
+ * @brief ANSI FILE* clone API declarations.
+ * @version $Id$
  */
 #ifndef INCLUDED_fileio_h
 #define INCLUDED_fileio_h
@@ -13,8 +12,7 @@
 
 struct stat;
 
-/*
- * FileBuf is a mirror of the ANSI FILE struct, but it works for any
+/** A mirror of the ANSI FILE struct, but it works for any
  * file descriptor. FileBufs are allocated when a file is opened with
  * fbopen, and they are freed when the file is closed using fbclose.
  * (Some OSes limit the range of file descriptors in a FILE*, for
@@ -36,7 +34,7 @@ extern FBFILE *fdbopen(int fd, const char *mode);
  * close a file opened with fbopen, see fclose(3)
  */
 extern void fbclose(FBFILE * fb);
-/* 
+/*
  * return the next character from the file, EOF on end of file
  * see fgetc(3)
  */