forked from ariadne/pkgconf
doc: document pkgconf_path_relocate()
parent
4a3d3745e0
commit
0315832285
|
@ -52,3 +52,12 @@ variables.
|
|||
|
||||
:param pkgconf_list_t* dirlist: The path list to clean up.
|
||||
:return: nothing
|
||||
|
||||
.. c:function:: bool pkgconf_path_relocate(char *buf, size_t buflen)
|
||||
|
||||
Relocates a path, possibly calling realpath() or cygwin_conv_path() on it.
|
||||
|
||||
:param char* buf: The path to relocate.
|
||||
:param size_t buflen: The buffer length the path is contained in.
|
||||
:return: true on success, false on error
|
||||
:rtype: bool
|
||||
|
|
|
@ -225,6 +225,18 @@ pkgconf_path_free(pkgconf_list_t *dirlist)
|
|||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* !doc
|
||||
*
|
||||
* .. c:function:: bool pkgconf_path_relocate(char *buf, size_t buflen)
|
||||
*
|
||||
* Relocates a path, possibly calling realpath() or cygwin_conv_path() on it.
|
||||
*
|
||||
* :param char* buf: The path to relocate.
|
||||
* :param size_t buflen: The buffer length the path is contained in.
|
||||
* :return: true on success, false on error
|
||||
* :rtype: bool
|
||||
*/
|
||||
bool
|
||||
pkgconf_path_relocate(char *buf, size_t buflen)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue