Sort all includes in src/gromacs
[alexxy/gromacs.git] / src / gromacs / utility / futil.h
index bec08e5a489546fbb116c24bcad3d0e9104a29cd..8e669e09d301516d7f99fee65f0732651dd84371 100644 (file)
@@ -48,7 +48,7 @@
 #include <limits.h>
 #include <stdio.h>
 
-#include "basedefinitions.h"
+#include "gromacs/utility/basedefinitions.h"
 
 #ifdef __cplusplus
 extern "C" {
@@ -57,7 +57,7 @@ extern "C" {
 }
 #endif
 
-#include "gmx_header_config.h"
+#include "gromacs/utility/gmx_header_config.h"
 /*! \def DIR_SEPARATOR
  * \brief
  * Directory separator on this OS.
@@ -93,11 +93,12 @@ extern "C" {
 typedef gmx_int64_t    gmx_off_t;
 
 /*! \brief
- * Turn off buffering of files (which is default) for debugging purposes.
+ * Turn off buffering for output files (which is default) for debugging
+ * purposes.
  *
  * This only has effect on files opened with gmx_ffopen().
  */
-void no_buffers(void);
+void gmx_disable_file_buffering(void);
 
 /*! \brief
  * Check whether a path exists.
@@ -109,17 +110,6 @@ void no_buffers(void);
  */
 gmx_bool gmx_fexist(const char *fname);
 
-/*! \brief
- * Checks for end of file.
- *
- * \returns `TRUE` on end-of-file
- *
- * \todo
- * There are only two callers for this function, while there are ~20 direct
- * calls to feof().  Probably this is unnecessary.
- */
-gmx_bool gmx_eof(FILE *fp);
-
 /*! \brief
  * Makes a backup of file if the file exists.
  *