/usr/include/gnucash/file-utils.h is in gnucash-common 1:2.6.12-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | /********************************************************************\
* file-utils.h -- simple file utilities *
* Copyright (C) 1997 Robin D. Clark *
* Copyright (C) 1998 Linas Vepstas *
* Copyright (C) 1998 Rob Browning *
* Copyright (C) 2004 Derek Atkins <derek@ihtfp.com> *
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License as *
* published by the Free Software Foundation; either version 2 of *
* the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License*
* along with this program; if not, write to the Free Software *
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. *
* *
* Author: Rob Clark *
* Internet: rclark@cs.hmc.edu *
* Address: 609 8th Street *
* Huntington Beach, CA 92648-4632 *
\********************************************************************/
/** @addtogroup Utils Utility functions
@{ */
/** @addtogroup UtilFile File
* @{ */
/** @file file-utils.h
* @brief Utility functions for file access
* @author Copyright (C) 1997 Robin D. Clark
* @author Copyright (C) 1998 Linas Vepstas
* @author Copyright (C) 1998 Rob Browning
* @author Copyright (C) 2004 Derek Atkins <derek@ihtfp.com>
*
* These functions help you to locate files that can reside
* in multiple locations.
*/
#ifndef GNC_FILE_UTILS_H
#define GNC_FILE_UTILS_H
#include <stdio.h> /* for FILE* */
/** Reads the contents of a file into a buffer for further processing.
*
* If the filename is not an absolute filename, it will be searched
* for in the search path available to the program. This can be used
* to find for example help files,...
*
* Uses the global xxxPath as the path to search
*
* @param filename the name of the html file to read
*
* @param data Pointer to a buffer to store the file's content.
*
* @return The file size
*/
int gncReadFile (const char * filename, char ** data);
/** Read a line from the input file, up to and including the newline.
*
* The caller MUST g_free() the line returned from this call in all
* cases where it is non-NULL!
*
* @param line pointer to hold the buffer for the whole line (allocated by
* this function)
*
* @param file the file from which to read
*
* @return The number of bytes read
*/
gint64 gnc_getline (gchar **line, FILE *file);
#endif /* GNC_FILE_UTILS_H */
/** @} */
/** @} */
|