Ignore:
Timestamp:
May 29, 2018, 9:27:23 AM (6 years ago)
Author:
alain
Message:

Restructure the mini_libc.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/libs/mini-libc/string.h

    r444 r445  
    11/*
    2  * string.h - Caracter string handling API definition.
     2 * string.h - User level <string> library definition.
    33 *
    4  * Author     Alain Greiner (2016,2017)
     4 * Author     Alain Greiner (2016,2017,2018)
    55 *
    66 * Copyright (c) UPMC Sorbonne Universites
     
    2525#define _STRING_H_
    2626
     27/*****************************************************************************************
     28 * This file defines the user level, character string related <string> library.
     29 * These functions do not use any syscall.
     30 ****************************************************************************************/
     31
     32
    2733/********************************************************************************************
    2834 * This function returns the length of a character string.
     
    4147 *******************************************************************************************/
    4248unsigned int strnlen( const char * str,
    43                   unsigned int     maxlen );
     49                      unsigned int     maxlen );
    4450
    4551/********************************************************************************************
Note: See TracChangeset for help on using the changeset viewer.