Changeset aa37d6f in mainline for uspace/app/mkexfat/mkexfat.c


Ignore:
Timestamp:
2012-02-26T20:00:13Z (12 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
09c954b
Parents:
00af658
Message:

mkexfat: Fix comment, add description on top of function "is_power_of_two()"

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/mkexfat/mkexfat.c

    r00af658 raa37d6f  
    422422 *
    423423 * @param service_id  The service id.
    424  * @param cfg  Pointer to the exfat configuration number.
     424 * @param cfg  Pointer to the exfat configuration structure.
    425425 * @param cur_cls  Cluster index from where to start the allocation.
    426426 * @param ncls  Number of clusters to allocate.
     
    696696}
    697697
     698/** Check if a given number is a power of two.
     699 *
     700 * @param n   The number to check.
     701 * @return    true if n is a power of two, false otherwise.
     702 */
    698703static bool
    699704is_power_of_two(unsigned long n)
Note: See TracChangeset for help on using the changeset viewer.