GNU standards require "file name" instead of "filename" in
[pspp-builds.git] / src / data / make-file.h
index 88fa879b49b017a5070b301da13e59fe4573f8a6..68d6a2b9ed01c68900050985605ccbb35a6627ac 100644 (file)
 #define MKFILE_H
 
 
-/* Creates a temporary file and stores its name in *FILENAME and
+/* Creates a temporary file and stores its name in *FILE_NAME and
    a file descriptor for it in *FD.  Returns success.  Caller is
-   responsible for freeing *FILENAME. */
-int make_temp_file (int *fd, char **filename); 
+   responsible for freeing *FILE_NAME. */
+int make_temp_file (int *fd, char **file_name); 
 
 
-/* Creates a temporary file and stores its name in *FILENAME and
+/* Creates a temporary file and stores its name in *FILE_NAME and
    a file stream for it in *FP.  Returns success.  Caller is
-   responsible for freeing *FILENAME. */
-int make_unique_file_stream (FILE **fp, char **filename) ;
+   responsible for freeing *FILE_NAME. */
+int make_unique_file_stream (FILE **fp, char **file_name) ;
 
 #endif /* make-file.h */