Ignore:
Timestamp:
Feb 3, 2016, 9:59:18 AM (8 years ago)
Author:
meunier
Message:
  • Ajout de l'application rosenfeld
  • Changement du nom du flag O_CREATE en O_CREAT
File:
1 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/giet_libs/stdlib.h

    r771 r772  
    4545// The terminating NUL character is not taken into account.
    4646////////////////////////////////////////////////////////////////////////////////////////
    47 unsigned int strlen( char* string );
     47int strlen( const char* string );
    4848
    4949////////////////////////////////////////////////////////////////////////////////////////
     
    5252// It returns 1 if they are not.
    5353////////////////////////////////////////////////////////////////////////////////////////
    54 unsigned int strcmp( char* s1,
    55                     char* s2 );
     54int strcmp( const char* s1,
     55            const char* s2 );
    5656
    5757////////////////////////////////////////////////////////////////////////////////////////
     
    6060////////////////////////////////////////////////////////////////////////////////////////
    6161char* strcpy( char* dest,
    62               char* source );
     62              const char* source );
    6363
    6464///////////////////////////////////////////////////////////////////////////////////////
Note: See TracChangeset for help on using the changeset viewer.