Changeset cf26ba9 in mainline for generic/src/lib


Ignore:
Timestamp:
2006-05-01T12:24:32Z (20 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
953b0f33
Parents:
ea199e5
Message:

Improve Doxygen-comments.

Location:
generic/src/lib
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • generic/src/lib/elf.c

    rea199e5 rcf26ba9  
    2727 */
    2828
     29/**
     30 * @file        elf.c
     31 * @brief       Kernel ELF loader.
     32 */
     33
    2934#include <elf.h>
    3035#include <debug.h>
  • generic/src/lib/func.c

    rea199e5 rcf26ba9  
    2525 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
    2626 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     27 */
     28
     29/**
     30 * @file        func.c
     31 * @brief       Miscellaneous functions.
    2732 */
    2833
  • generic/src/lib/memstr.c

    rea199e5 rcf26ba9  
    2525 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
    2626 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     27 */
     28
     29/**
     30 * @file        memstr.c
     31 * @brief       Memory string operations.
     32 *
     33 * This file provides architecture independent functions
     34 * to manipulate blocks of memory. These functions
     35 * are optimized as much as generic functions of
     36 * this type can be. However, architectures are
     37 * free to provide even more optimized versions of these
     38 * functions.
    2739 */
    2840
  • generic/src/lib/sort.c

    rea199e5 rcf26ba9  
    2727 */
    2828
     29/**
     30 * @file        sort.c
     31 * @brief       Sorting functions.
     32 *
     33 * This files contains functions implementing several sorting
     34 * algorithms (e.g. quick sort and bubble sort).
     35 */
     36 
    2937#include <mm/slab.h>
    3038#include <memstr.h>
Note: See TracChangeset for help on using the changeset viewer.