Changes between Version 2 and Version 3 of library_stdlib


Ignore:
Timestamp:
Jun 4, 2015, 1:19:23 PM (10 years ago)
Author:
laurent
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • library_stdlib

    v2 v3  
    88For a negative value, the  first character must be the '-' (minus) character.
    99
     10 * '''double atof( char * string )'''
     11This function translate a character string to a double. Conversion stop at first non-numeric character (except a first '+' or '-' and one '.').
     12
    1013 * '''void* memcpy( void* dst, const void* src, unsigned int size )'''
    1114This function copies ''size'' bytes from the ''src'' source buffer to the ''dst'' destination buffer.