/usr/include/basedir_fs.h is in libxdg-basedir-dev 1.2.0-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 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 | /* Copyright (c) 2007 Mark Nevill
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use,
* copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following
* conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
/** @file basedir_fs.h
* Filesystem functions related to the XDG Base Directory specification. */
#ifndef XDG_BASEDIR_FS_H
#define XDG_BASEDIR_FS_H
#include <basedir.h>
#include <stdio.h>
#include <sys/types.h>
#ifdef __cplusplus
extern "C" {
#endif
/** @name Filesystem-related XDG Base Directory Queries */
/*@{*/
/** Find all existing data files corresponding to relativePath.
* Consider as performing @code fopen(filename, "r") @endcode on every possible @c filename
* and returning the successful <tt>filename</tt>s.
* @param relativePath Path to scan for.
* @param handle Handle to data cache, initialized with xdgInitHandle().
* @return A sequence of null-terminated strings terminated by a double-null (empty string)
* and allocated using malloc(), e.g.: @code "/etc/share\0/home/jdoe/.local\0" @endcode
*/
char * xdgDataFind(const char* relativePath, xdgHandle *handle);
/** Find all existing config files corresponding to relativePath.
* Consider as performing @code fopen(filename, "r") @endcode on every possible @c filename
* and returning the successful <tt>filename</tt>s.
* @param relativePath Path to scan for.
* @param handle Handle to data cache, initialized with xdgInitHandle().
* @return A sequence of null-terminated strings terminated by a double-null (empty string)
* and allocated using malloc(), e.g.: @code "/etc/xdg\0/home/jdoe/.config\0" @endcode
*/
char * xdgConfigFind(const char* relativePath, xdgHandle *handle);
/** Open first possible data file corresponding to relativePath.
* Consider as performing @code fopen(filename, mode) @endcode on every possible @c filename
* and returning the first successful @c filename or @c NULL.
* @param relativePath Path to scan for.
* @param mode Mode with which to attempt to open files (see fopen modes).
* @param handle Handle to data cache, initialized with xdgInitHandle().
* @return File pointer if successful else @c NULL. Client must use @c fclose to close file.
*/
FILE * xdgDataOpen(const char* relativePath, const char* mode, xdgHandle *handle);
/** Open first possible config file corresponding to relativePath.
* Consider as performing @code fopen(filename, mode) @endcode on every possible @c filename
* and returning the first successful @c filename or @c NULL.
* @param relativePath Path to scan for.
* @param mode Mode with which to attempt to open files (see fopen modes).
* @param handle Handle to data cache, initialized with xdgInitHandle().
* @return File pointer if successful else @c NULL. Client must use @c fclose to close file.
*/
FILE * xdgConfigOpen(const char* relativePath, const char* mode, xdgHandle *handle);
/** Create path by recursively creating directories.
* This utility function is not part of the XDG specification, but
* nevertheless useful in context of directory manipulation.
* @param path The path to be created.
* @param mode The permissions to use for created directories. This parameter
* is modified by the process's umask. For details, see mkdir(2)'s mode
* parameter.
* @return Zero on success, -1 if an error occured (in which case errno will
* be set appropriately)
*/
int xdgMakePath(const char * path, mode_t mode);
/*@}*/
#ifdef __cplusplus
} // extern "C"
#endif
#endif /*XDG_BASEDIR_FS_H*/
|