Changeset 7c3fb9b in mainline for uspace/lib/bithenge/src/compound.c


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/src/compound.c

    rfac0ac7 r7c3fb9b  
    115115 * @param[in] xforms The transforms to apply.
    116116 * @param num The number of transforms.
    117  * @return EOK on success or an error code from errno.h. */
     117 * @return EOK on success or an error code from errno.h.
     118 */
    118119errno_t bithenge_new_composed_transform(bithenge_transform_t **out,
    119120    bithenge_transform_t **xforms, size_t num)
     
    231232 * @param true_xform The transform to apply if the expression is true.
    232233 * @param false_xform The transform to apply if the expression is false.
    233  * @return EOK on success or an error code from errno.h. */
     234 * @return EOK on success or an error code from errno.h.
     235 */
    234236errno_t bithenge_if_transform(bithenge_transform_t **out,
    235237    bithenge_expression_t *expr, bithenge_transform_t *true_xform,
     
    309311 * @param[out] out Holds the new transform.
    310312 * @param xform The subtransform to apply.
    311  * @return EOK on success or an error code from errno.h. */
     313 * @return EOK on success or an error code from errno.h.
     314 */
    312315errno_t bithenge_partial_transform(bithenge_transform_t **out,
    313316    bithenge_transform_t *xform)
Note: See TracChangeset for help on using the changeset viewer.