Changes between Version 1 and Version 2 of library_stdlib
- Timestamp:
- Aug 5, 2014, 1:25:53 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
library_stdlib
v1 v2 2 2 3 3 The [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 do esnot require a system call.4 files define a set of useful functions that do not require a system call. 5 5 6 6 * '''int atoi( char * string )''' … … 8 8 For a negative value, the first character must be the '-' (minus) character. 9 9 10 * '''void* memcpy( void* dst, const void* src, unsigned int size )'''10 * '''void* memcpy( void* dst, const void* src, unsigned int size )''' 11 11 This function copies ''size'' bytes from the ''src'' source buffer to the ''dst'' destination buffer. 12 12