diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2004-09-16 21:15:14 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2004-09-16 21:15:14 +0000 |
commit | 14613e5e74b633aeaa4f69e7ea096074ba94cb1f (patch) | |
tree | 0503fb6fabceee7c268746ac4cd69c6428ef6b84 /newlib/libc/stdlib/stdlib.tex | |
parent | 368ffbe3d851a72b74527088f9cba63f71466742 (diff) | |
download | cygnal-14613e5e74b633aeaa4f69e7ea096074ba94cb1f.tar.gz cygnal-14613e5e74b633aeaa4f69e7ea096074ba94cb1f.tar.bz2 cygnal-14613e5e74b633aeaa4f69e7ea096074ba94cb1f.zip |
2004-09-16 Antony King <antony.king@st.com>
* libc/ctype/ctype.tex: Added missing documentation.
* libc/stdio/stdio.tex Ditto.
* libc/stdlib/stdlib.tex Ditto.
* libc/string/strings.tex Ditto.
* libc/time/time.tex: Ditto.
* libc/stdio/setbuffer.c: Removed setlinebuf documentation.
Diffstat (limited to 'newlib/libc/stdlib/stdlib.tex')
-rw-r--r-- | newlib/libc/stdlib/stdlib.tex | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/newlib/libc/stdlib/stdlib.tex b/newlib/libc/stdlib/stdlib.tex index 39fb915fc..9d19b71a8 100644 --- a/newlib/libc/stdlib/stdlib.tex +++ b/newlib/libc/stdlib/stdlib.tex @@ -5,6 +5,8 @@ This chapter groups utility functions useful in a variety of programs. The corresponding declarations are in the header file @file{stdlib.h}. @menu +* _Exit:: End program execution without cleaning up +* a64l:: String to long long * abort:: Abnormal termination of a program * abs:: Integer absolute value (magnitude) * assert:: Macro for Debugging Diagnostics @@ -30,17 +32,26 @@ The corresponding declarations are in the header file @file{stdlib.h}. * mbstowcs:: Minimal multibyte string to wide string converter * mblen:: Minimal multibyte length * mbtowc:: Minimal multibyte to wide character converter +* on_exit:: Request execution of functions at program exit * rand:: Pseudo-random numbers * rand48:: Uniformly distributed pseudo-random numbers * strtod:: String to double or float * strtol:: String to long +* strtoll:: String to long long * strtoul:: String to unsigned long +* strtoull:: String to unsigned long long * system:: Execute command string * wcstombs:: Minimal wide string to multibyte string converter * wctomb:: Minimal wide character to multibyte converter @end menu @page +@include stdlib/_Exit.def + +@page +@include stdlib/a64l.def + +@page @include stdlib/abort.def @page @@ -113,6 +124,9 @@ The corresponding declarations are in the header file @file{stdlib.h}. @include stdlib/mbtowc.def @page +@include stdlib/on_exit.def + +@page @include stdlib/rand.def @page @@ -125,9 +139,15 @@ The corresponding declarations are in the header file @file{stdlib.h}. @include stdlib/strtol.def @page +@include stdlib/strtoll.def + +@page @include stdlib/strtoul.def @page +@include stdlib/strtoull.def + +@page @include stdlib/system.def @page |