aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_disk_lib.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gnunet_disk_lib.h')
-rw-r--r--src/include/gnunet_disk_lib.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/include/gnunet_disk_lib.h b/src/include/gnunet_disk_lib.h
index ddb2369c2..4b38a31d6 100644
--- a/src/include/gnunet_disk_lib.h
+++ b/src/include/gnunet_disk_lib.h
@@ -344,7 +344,7 @@ GNUNET_DISK_file_size (const char *filename, uint64_t *size,
344 * @param filename name of the file 344 * @param filename name of the file
345 * @param dev set to the device ID 345 * @param dev set to the device ID
346 * @param ino set to the inode ID 346 * @param ino set to the inode ID
347 * @return GNUNET_OK on success 347 * @return #GNUNET_OK on success
348 */ 348 */
349int 349int
350GNUNET_DISK_file_get_identifiers (const char *filename, 350GNUNET_DISK_file_get_identifiers (const char *filename,
@@ -528,7 +528,6 @@ GNUNET_DISK_fix_permissions (const char *fn,
528 int require_gid_match); 528 int require_gid_match);
529 529
530 530
531
532/** 531/**
533 * Get a handle from a native integer FD. 532 * Get a handle from a native integer FD.
534 * 533 *
@@ -646,7 +645,8 @@ GNUNET_DISK_fn_write (const char *fn,
646 * @return #GNUNET_OK on success, #GNUNET_SYSERR on error 645 * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
647 */ 646 */
648int 647int
649GNUNET_DISK_file_copy (const char *src, const char *dst); 648GNUNET_DISK_file_copy (const char *src,
649 const char *dst);
650 650
651 651
652/** 652/**
@@ -679,10 +679,11 @@ struct GNUNET_DISK_DirectoryIterator;
679 * @param filename complete filename (absolute path) 679 * @param filename complete filename (absolute path)
680 * @param dirname directory name (absolute path) 680 * @param dirname directory name (absolute path)
681 */ 681 */
682typedef void (*GNUNET_DISK_DirectoryIteratorCallback) (void *cls, 682typedef void
683 struct GNUNET_DISK_DirectoryIterator *di, 683(*GNUNET_DISK_DirectoryIteratorCallback) (void *cls,
684 const char *filename, 684 struct GNUNET_DISK_DirectoryIterator *di,
685 const char *dirname); 685 const char *filename,
686 const char *dirname);
686 687
687 688
688/** 689/**