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.
This commit is contained in:
Jeff Johnston
2004-09-16 21:15:14 +00:00
parent 368ffbe3d8
commit 14613e5e74
7 changed files with 88 additions and 35 deletions

View File

@ -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,16 +32,25 @@ 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
@ -112,6 +123,9 @@ The corresponding declarations are in the header file @file{stdlib.h}.
@page
@include stdlib/mbtowc.def
@page
@include stdlib/on_exit.def
@page
@include stdlib/rand.def
@ -124,9 +138,15 @@ The corresponding declarations are in the header file @file{stdlib.h}.
@page
@include stdlib/strtol.def
@page
@include stdlib/strtoll.def
@page
@include stdlib/strtoul.def
@page
@include stdlib/strtoull.def
@page
@include stdlib/system.def