Ignore:
Timestamp:
2018-05-17T08:29:01Z (6 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
6ff23ff
Parents:
fac0ac7
git-author:
Jiri Svoboda <jiri@…> (2018-05-16 17:28:17)
git-committer:
Jiri Svoboda <jiri@…> (2018-05-17 08:29:01)
Message:

Fix block comment formatting (ccheck).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/bithenge/include/bithenge/transform.h

    rfac0ac7 r7c3fb9b  
    6464/** Increment a scope's reference count.
    6565 * @memberof bithenge_scope_t
    66  * @param self The scope to reference. */
     66 * @param self The scope to reference.
     67 */
    6768static inline void bithenge_scope_inc_ref(bithenge_scope_t *self)
    6869{
     
    7374/** Operations that may be provided by a transform. All transforms must provide
    7475 * apply and/or prefix_apply. To be used in struct transforms and repeat
    75  * transforms, transforms must provide prefix_length and/or prefix_apply. */
     76 * transforms, transforms must provide prefix_length and/or prefix_apply.
     77 */
    7678typedef struct bithenge_transform_ops {
    7779        /** @copydoc bithenge_transform_t::bithenge_transform_apply */
     
    8688            bithenge_node_t **out_node, aoff64_t *out_size);
    8789        /** Destroy the transform.
    88          * @param self The transform. */
     90         * @param self The transform.
     91         */
    8992        void (*destroy)(bithenge_transform_t *self);
    9093} bithenge_transform_ops_t;
     
    9396 * by the parser and param-wrapper. Takes ownership of nothing.
    9497 * @param self The transform.
    95  * @return The number of parameters required. */
     98 * @return The number of parameters required.
     99 */
    96100static inline int bithenge_transform_num_params(bithenge_transform_t *self)
    97101{
     
    101105
    102106/** Increment a transform's reference count.
    103  * @param self The transform to reference. */
     107 * @param self The transform to reference.
     108 */
    104109static inline void bithenge_transform_inc_ref(bithenge_transform_t *self)
    105110{
     
    109114
    110115/** Decrement a transform's reference count and free it if appropriate.
    111  * @param self The transform to dereference, or NULL. */
     116 * @param self The transform to dereference, or NULL.
     117 */
    112118static inline void bithenge_transform_dec_ref(bithenge_transform_t *self)
    113119{
Note: See TracChangeset for help on using the changeset viewer.