Changeset 8375d0eb in mainline for uspace/app/bithenge/blob.c


Ignore:
Timestamp:
2012-06-08T07:02:55Z (13 years ago)
Author:
Sean Bartell <wingedtachikoma@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8b36bf2
Parents:
5c925ce
Message:

Bithenge: add Doxygen comments

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/bithenge/blob.c

    r5c925ce r8375d0eb  
    226226};
    227227
    228 /** Create a blob from data. Unlike with @a
     228/** Create a blob node from data. Unlike with @a
    229229 * bithenge_blob_t::bithenge_new_blob_from_buffer, the data is copied into a
    230230 * new buffer and the original data can be changed after this call. The blob
    231  * must be freed with @a bithenge_blob_t::bithenge_blob_destroy after it is
     231 * must be freed with @a bithenge_node_t::bithenge_node_destroy after it is
    232232 * used.
    233233 * @memberof bithenge_blob_t
    234  * @param[out] out Stores the created blob.
     234 * @param[out] out Stores the created blob node.
    235235 * @param[in] data The data.
    236236 * @param len The length of the data.
     
    264264}
    265265
    266 /** Create a blob from a buffer. The buffer must exist as long as the blob
    267  * does. The blob must be freed with @a bithenge_blob_t::bithenge_blob_destroy
     266/** Create a blob node from a buffer. The buffer must exist as long as the blob
     267 * does. The blob must be freed with @a bithenge_node_t::bithenge_node_destroy
    268268 * after it is used.
    269269 * @memberof bithenge_blob_t
    270  * @param[out] out Stores the created blob.
     270 * @param[out] out Stores the created blob node.
    271271 * @param[in] buffer The buffer, which must not be changed until the blob is
    272272 * destroyed.
Note: See TracChangeset for help on using the changeset viewer.