summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-10-20 12:51:15 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-10-20 12:51:15 +0000
commit5e8a37c78d3658f5a37f91955032e87718a505be (patch)
tree0159d7f7d429e5ddaa800ea9e1b0997116fce96d /doc
parentRemoved KA9Q manual. (diff)
downloadrtems-5e8a37c78d3658f5a37f91955032e87718a505be.tar.bz2
Added initial cut at some of the libc chapters.
Diffstat (limited to 'doc')
-rw-r--r--doc/new_chapters/gen_section27
1 files changed, 27 insertions, 0 deletions
diff --git a/doc/new_chapters/gen_section b/doc/new_chapters/gen_section
index 3dec3dce77..d3b8bde58f 100644
--- a/doc/new_chapters/gen_section
+++ b/doc/new_chapters/gen_section
@@ -102,6 +102,33 @@ case ${chapter} in
CHAPTER_LOWER="administration interface"
ROUTINES="admin_shutdown"
;;
+ # XXX this is not all of the C Library Stuff
+ libc_ctype)
+ CHAPTER_CAPS="C Library Character Handling"
+ CHAPTER_LOWER="character handling"
+ ROUTINES="isalnum isalpha iscntrl isdigit isgraph islower isprint \
+ ispunct isspace isupper isxdigit tolower toupper"
+ ;;
+ libc_math)
+ CHAPTER_CAPS="C Math Library"
+ CHAPTER_LOWER="math library"
+ ROUTINES="acos asis atan atan2 cos sin tan cosh sinh tanh exp frexp ldexp
+ log log10 modf pow sqrt ceil fabs floor fmod"
+ ;;
+ libc_io)
+ CHAPTER_CAPS="C Library IO"
+ CHAPTER_LOWER="C Library IO"
+ ROUTINES="clearerr fclose feof ferror fflush fgetc fgets fopen fputc \
+ fputs fread freopen fseek ftell fwrite getc getchar gets perror \
+ printf fprintf sprintf putc putchar puts remove rename rewind \
+ scanf fscanf sscanf setbuf tempfile tmpnam ungetc"
+ ;;
+ libc_string)
+ CHAPTER_CAPS="C Library String Handling"
+ CHAPTER_LOWER="string handling"
+ ROUTINES="strcpy strncpy strcat strncat strcmp strncmp strchr strcspn \
+ strpbrk strrchr strspn strstr strtok stlen"
+ ;;
*)
echo "Unknown chapter name"
exit 1