# HG changeset patch # User diego # Date 1278070873 0 # Node ID d71ea3c262025539db90e386504ac789caa413fb # Parent 278843790234198ae95eba4c5cf6dc5706a2a8a7 Fix Doxygen function parameter documentation syntax. diff -r 278843790234 -r d71ea3c26202 id3v2.h --- a/id3v2.h Fri Jul 02 11:19:29 2010 +0000 +++ b/id3v2.h Fri Jul 02 11:41:13 2010 +0000 @@ -35,15 +35,15 @@ /** * Detect ID3v2 Header. - * @buf must be ID3v2_HEADER_SIZE byte long - * @magic magic bytes to identify the header, machine byte order. + * @param buf must be ID3v2_HEADER_SIZE byte long + * @param magic magic bytes to identify the header, machine byte order. * If in doubt, use ID3v2_DEFAULT_MAGIC. */ int ff_id3v2_match(const uint8_t *buf, const char *magic); /** * Get the length of an ID3v2 tag. - * @buf must be ID3v2_HEADER_SIZE bytes long and point to the start of an + * @param buf must be ID3v2_HEADER_SIZE bytes long and point to the start of an * already detected ID3v2 tag */ int ff_id3v2_tag_len(const uint8_t *buf);