aboutsummaryrefslogtreecommitdiff
path: root/src/util/strings.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/strings.c')
-rw-r--r--src/util/strings.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/util/strings.c b/src/util/strings.c
index 18f6582e8..be0e6c1f0 100644
--- a/src/util/strings.c
+++ b/src/util/strings.c
@@ -337,7 +337,9 @@ GNUNET_STRINGS_filename_expand (const char *fil)
337 337
338/** 338/**
339 * Give relative time in human-readable fancy format. 339 * Give relative time in human-readable fancy format.
340 * @param delta time in milli seconds 340 *
341 * @param del time in milli seconds
342 * @return time as human-readable string
341 */ 343 */
342char * 344char *
343GNUNET_STRINGS_relative_time_to_string (struct GNUNET_TIME_Relative del) 345GNUNET_STRINGS_relative_time_to_string (struct GNUNET_TIME_Relative del)
@@ -374,6 +376,9 @@ GNUNET_STRINGS_relative_time_to_string (struct GNUNET_TIME_Relative del)
374/** 376/**
375 * "man ctime_r", except for GNUnet time; also, unlike ctime, the 377 * "man ctime_r", except for GNUnet time; also, unlike ctime, the
376 * return value does not include the newline character. 378 * return value does not include the newline character.
379 *
380 * @param t time to convert
381 * @return absolute time in human-readable format
377 */ 382 */
378char * 383char *
379GNUNET_STRINGS_absolute_time_to_string (struct GNUNET_TIME_Absolute t) 384GNUNET_STRINGS_absolute_time_to_string (struct GNUNET_TIME_Absolute t)