OSDN Git Service

Document libavutil/mem.h:av_strdup.
authorStefano Sabatini <stefano.sabatini-lala@poste.it>
Sun, 9 Sep 2007 13:23:34 +0000 (13:23 +0000)
committerDiego Biurrun <diego@biurrun.de>
Sun, 9 Sep 2007 13:23:34 +0000 (13:23 +0000)
patch by Stefano Sabatini, stefano.sabatini-lala poste it

Originally committed as revision 10456 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavutil/mem.h

index 4ebdad8..81b8724 100644 (file)
@@ -54,6 +54,13 @@ void *av_realloc(void *ptr, unsigned int size);
 void av_free(void *ptr);
 
 void *av_mallocz(unsigned int size);
+
+/**
+ * Duplicates the string \p s.
+ * @param s String to be duplicated.
+ * @return Pointer to a newly allocated string containing a
+ * copy of \p s or NULL if it cannot allocate it.
+ */
 char *av_strdup(const char *s);
 
 /**