Changes between Version 2 and Version 3 of library_stdlib
- Timestamp:
- Jun 4, 2015, 1:19:23 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
library_stdlib
v2 v3 8 8 For a negative value, the first character must be the '-' (minus) character. 9 9 10 * '''double atof( char * string )''' 11 This function translate a character string to a double. Conversion stop at first non-numeric character (except a first '+' or '-' and one '.'). 12 10 13 * '''void* memcpy( void* dst, const void* src, unsigned int size )''' 11 14 This function copies ''size'' bytes from the ''src'' source buffer to the ''dst'' destination buffer.