Changes between Version 1 and Version 2 of library_stdlib


Ignore:
Timestamp:
Aug 5, 2014, 1:25:53 PM (10 years ago)
Author:
alain
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • library_stdlib

    v1 v2  
    22
    33The [source:soft/giet_vm/giet_libs/stdlib.c stdlib.c] and [source:soft/giet_vm/giet_libs/stdlib.h stdlib.h]
    4 files define a set of useful functions that does not require a system call.
     4files define a set of useful functions that do not require a system call.
    55
    66 * '''int atoi( char * string )'''
     
    88For a negative value, the  first character must be the '-' (minus) character.
    99
    10  *'''void* memcpy( void* dst, const void* src, unsigned int size )'''
     10 * '''void* memcpy( void* dst, const void* src, unsigned int size )'''
    1111This function copies ''size'' bytes from the ''src'' source buffer to the ''dst'' destination buffer.
    1212