Datasheet
The C and C++ Libraries
ARM DUI 0067D Copyright © 1999-2001 ARM Limited. All rights reserved. 4-19
• The
remove()
and
rename()
functions are system-specific and probably not usable
in your application.
stdlib.h
Most functions in this file work without any library initialization or function
re-implementation. The following functions are not available, or require
implementation of a support function:
ato*()
Requires
locale
.
strto*()
Requires
locale
.
malloc()
malloc()
,
calloc()
,
realloc()
, and
free()
require heap functions.
atexit()
Is not available.
string.h
Functions in this file work without any library initialization, with the exception of
strcoll()
and
strxfrm()
, which require
locale
.
time.h
mktime()
and
localtime()
can be used immediately.
time()
and
clock()
are system-specific and probably not usable unless re-implemented.
asctime()
,
ctime()
, and
strftime()
require
locale
.