Changeset d34657e in mainline for src/lib/memstr.c


Ignore:
Timestamp:
2005-05-11T17:00:13Z (20 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
27dc170
Parents:
724b58a
Message:

doxygen-style comments

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/lib/memstr.c

    r724b58a rd34657e  
    3030#include <arch/types.h>
    3131
     32
     33/** Copy block of memory
     34 *
     35 * Copy cnt bytes from src address to dst address.
     36 * The copying is done byte-by-byte. The source
     37 * and destination memory areas cannot overlap.
     38 *
     39 * @param src Origin address to copy from.
     40 * @param dst Origin address to copy to.
     41 * @param cnt Number of bytes to copy.
     42 *
     43 */
    3244void _memcopy(__address src, __address dst, int cnt)
    3345{
     
    3850}
    3951
     52
     53/** Fill block of memory
     54 *
     55 * Fill cnt bytes at dst address with the value x.
     56 * The filling is done byte-by-byte.
     57 *
     58 * @param dst Origin address to fill.
     59 * @param cnt Number of bytes to fill.
     60 * @param x   Value to fill.
     61 *
     62 */
    4063void _memsetb(__address dst, int cnt, __u8 x)
    4164{
Note: See TracChangeset for help on using the changeset viewer.