[MPlayer-cvslog] r35569 - trunk/gui/util/string.c

ib subversion at mplayerhq.hu
Mon Dec 3 00:46:32 CET 2012


Author: ib
Date: Mon Dec  3 00:46:31 2012
New Revision: 35569

Log:
Cosmetic: Place doxygen note at the end of the comment.

Modified:
   trunk/gui/util/string.c

Modified: trunk/gui/util/string.c
==============================================================================
--- trunk/gui/util/string.c	Mon Dec  3 00:25:20 2012	(r35568)
+++ trunk/gui/util/string.c	Mon Dec  3 00:46:31 2012	(r35569)
@@ -213,10 +213,10 @@ char *gstrdup(const char *str)
  *
  *        The string is duplicated by calling #gstrdup().
  *
- * @note @a *old is freed prior to the assignment.
- *
  * @param old pointer to a variable suitable to store the new pointer
  * @param str string to be duplicated
+ *
+ * @note @a *old is freed prior to the assignment.
  */
 void setdup(char **old, const char *str)
 {
@@ -228,11 +228,11 @@ void setdup(char **old, const char *str)
  * @brief Assign a newly allocated string
  *        containing the path created from a directory and a filename.
  *
- * @note @a *old is freed prior to the assignment.
- *
  * @param old pointer to a variable suitable to store the new pointer
  * @param dir directory
  * @param name filename
+ *
+ * @note @a *old is freed prior to the assignment.
  */
 void setddup(char **old, const char *dir, const char *name)
 {
@@ -331,13 +331,13 @@ char *TranslateFilename(int how, char *f
 /**
  * @brief Read characters from @a file.
  *
- * @note Reading stops with an end-of-line character or at end of file.
- *
  * @param str pointer to a buffer to receive the read characters
  * @param size number of characters read at the most (including a terminating null-character)
  * @param file file to read from
  *
  * @return str (success) or NULL (error)
+ *
+ * @note Reading stops with an end-of-line character or at end of file.
  */
 char *fgetstr(char *str, int size, FILE *file)
 {


More information about the MPlayer-cvslog mailing list