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


Ignore:
Timestamp:
2012-06-08T07:02:55Z (12 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/print.c

    r5c925ce r8375d0eb  
    141141}
    142142
     143/** Print a tree as text.
     144 * @param type The format to use.
     145 * @param tree The root node of the tree to print.
     146 * @return EOK on success or an error code from errno.h. */
    143147int bithenge_print_node(bithenge_print_type_t type, bithenge_node_t *tree)
    144148{
    145149        switch (bithenge_node_type(tree)) {
    146         case BITHENGE_NODE_NONE:
    147                 return EINVAL;
    148150        case BITHENGE_NODE_INTERNAL:
    149151                return print_internal(type, tree);
     
    159161        return ENOTSUP;
    160162}
     163
     164/** @}
     165 */
Note: See TracChangeset for help on using the changeset viewer.