Changeset 8375d0eb in mainline for uspace/app/bithenge/blob.c
- Timestamp:
- 2012-06-08T07:02:55Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8b36bf2
- Parents:
- 5c925ce
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bithenge/blob.c
r5c925ce r8375d0eb 226 226 }; 227 227 228 /** Create a blob from data. Unlike with @a228 /** Create a blob node from data. Unlike with @a 229 229 * bithenge_blob_t::bithenge_new_blob_from_buffer, the data is copied into a 230 230 * 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 is231 * must be freed with @a bithenge_node_t::bithenge_node_destroy after it is 232 232 * used. 233 233 * @memberof bithenge_blob_t 234 * @param[out] out Stores the created blob .234 * @param[out] out Stores the created blob node. 235 235 * @param[in] data The data. 236 236 * @param len The length of the data. … … 264 264 } 265 265 266 /** Create a blob from a buffer. The buffer must exist as long as the blob267 * does. The blob must be freed with @a bithenge_ blob_t::bithenge_blob_destroy266 /** 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 268 268 * after it is used. 269 269 * @memberof bithenge_blob_t 270 * @param[out] out Stores the created blob .270 * @param[out] out Stores the created blob node. 271 271 * @param[in] buffer The buffer, which must not be changed until the blob is 272 272 * destroyed.
Note:
See TracChangeset
for help on using the changeset viewer.