summaryrefslogtreecommitdiffstats
path: root/doc/posix1003.1/ch08.t
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-03-14 16:31:11 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-03-14 16:31:11 +0000
commit0874502b511202a5d7a5befb1a0b9b5d8bf73550 (patch)
tree42c06e6c1e1d361367f243fc04301cf399e848d4 /doc/posix1003.1/ch08.t
parentOutline complete and apparently correct. (diff)
downloadrtems-0874502b511202a5d7a5befb1a0b9b5d8bf73550.tar.bz2
Added functions from POSIX standard.
Diffstat (limited to 'doc/posix1003.1/ch08.t')
-rw-r--r--doc/posix1003.1/ch08.t235
1 files changed, 232 insertions, 3 deletions
diff --git a/doc/posix1003.1/ch08.t b/doc/posix1003.1/ch08.t
index 8b3bfa8c7a..7fd56b6c3f 100644
--- a/doc/posix1003.1/ch08.t
+++ b/doc/posix1003.1/ch08.t
@@ -7,25 +7,254 @@
@c
@chapter Language-Specific Services for the C Programming Language
+
@section Referenced C Language Routines
+
+ANSI C Section 4.2 --- Diagnostics
+
+@example
+assert()
+@end example
+
+ANSI C Section 4.3 --- Character Handling
+
+@example
+isalnum()
+isalpha()
+iscntrl()
+isdigit()
+isgraph()
+islower()
+isprint()
+ispunct()
+isspace()
+isupper()
+isxdigit()
+tolower()
+toupper()
+@end example
+
+ANSI C Section 4.4 --- Localization
+
+@example
+setlocale()
+@end example
+
+ANSI C Section 4.5 --- Mathematics
+
+@example
+acos()
+asin()
+atan()
+atan2()
+cos()
+sin()
+tan()
+cosh()
+sinh()
+tanh()
+exp()
+frexp()
+ldexp()
+log()
+log10()
+modf()
+pow()
+sqrt()
+ceil()
+fabs()
+floor()
+fmod()
+@end example
+
+ANSI C Section 4.6 --- Non-Local Jumps
+
+@example
+setjmp()
+longjmp()
+@end example
+
+ANSI C Section 4.9 --- Input/Output
+
+@example
+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()
+tmpfile()
+tmpnam()
+ungetc()
+@end example
+
+ANSI C Section 4.10 --- General Utilities
+
+@example
+abs()
+atof()
+atoi()
+atol()
+rand()
+srand()
+calloc()
+free()
+malloc()
+realloc()
+abort()
+exit()
+getenv()
+bsearch()
+qsort()
+@end example
+
+ANSI C Section 4.11 --- String Handling
+
+@example
+strcpy()
+strncpy()
+strcat()
+strncat()
+strcmp()
+strncmp()
+strchr()
+strcspn()
+strpbrk()
+strrchr()
+strspn()
+strstr()
+strtok()
+strlen()
+@end example
+
+ANSI C Section 4.12 --- Date and Time Handling
+
+@example
+time()
+asctime()
+ctime()
+gmtime()
+localtime()
+mktime()
+strftime()
+@end example
+
@subsection Extensions to Time Functions
-@subsection Extensions to setlocale() Function
+
+@subsection Extensions to @code{setlocale} Function
+
@section C Language Input/Output Functions
+
@subsection Map a Stream Pointer to a File Descriptor
+
+@example
+fileno()
+@end example
+
@subsection Open a Stream on a File Descriptor
+
+@example
+fdopen()
+@end example
+
@subsection Interactions of Other FILE-Type C Functions
-@subsection Operations on Files -- the remove() Function
-@subsection Temporary File Name -- the tmpnam() Function
+
+@subsection Operations on Files -- the @code{remove} Function
+
+@subsection Temporary File Name -- the @code{tmpnam} Function
+
@subsection Stdio Locking Functions
+
+@example
+flockfile()
+ftrylockfile()
+funlockfile()
+@end example
+
@subsection Stdio With Explicit Client Locking
+
+@example
+getc_unlocked()
+getchar_unlocked()
+putc_unlocked()
+putchar_unlocked()
+@end example
+
@section Other C Language Functions
+
@subsection Nonlocal Jumps
+
+@example
+sigsetjmp()
+siglongjmp()
+@end example
+
@subsection Set Time Zone
+
+@example
+tzset()
+@end example
+
@subsection Find String Token
+
+@example
+strtok_r()
+@end example
+
@subsection ASCII Time Representation
+
+@example
+asctime_r()
+@end example
+
@subsection Current Time Representation
+
+@example
+ctime_r()
+@end example
+
@subsection Coordinated Universal Time
+
+@example
+gmtime_r()
+@end example
+
@subsection Local Time
+
+@example
+localtime_r()
+@end example
+
@subsection Pseudo-Random Sequence Generation Functions
+@example
+rand_r()
+@end example
+