source: rtems/doc/posix1003.1/ch08.t @ 5ed1beb5

4.104.114.84.95
Last change on this file since 5ed1beb5 was 5ed1beb5, checked in by Joel Sherrill <joel.sherrill@…>, on 04/03/98 at 18:50:31

Fixed improperly named sections for info

  • Property mode set to 100644
File size: 6.6 KB
RevLine 
[2d19ed6c]1@c
2@c  COPYRIGHT (c) 1988-1998.
3@c  On-Line Applications Research Corporation (OAR).
4@c  All rights reserved.
5@c
6@c  $Id$
7@c
8
9@chapter Language-Specific Services for the C Programming Language
[0874502]10
[2d19ed6c]11@section Referenced C Language Routines
[0874502]12
13ANSI C Section 4.2 --- Diagnostics
14
15@example
[2a087f3]16assert(), Function, Implemented
[0874502]17@end example
18
19ANSI C Section 4.3 --- Character Handling
20
21@example
[2a087f3]22isalnum(), Function, Implemented
23isalpha(), Function, Implemented
24iscntrl(), Function, Implemented
25isdigit(), Function, Implemented
26isgraph(), Function, Implemented
27islower(), Function, Implemented
28isprint(), Function, Implemented
29ispunct(), Function, Implemented
30isspace(), Function, Implemented
31isupper(), Function, Implemented
32isxdigit(), Function, Implemented
33tolower(), Function, Implemented
34toupper(), Function, Implemented
[0874502]35@end example
36
37ANSI C Section 4.4 --- Localization
38
39@example
[2a087f3]40setlocale(), Function, Partial Implementation
[0874502]41@end example
42
43ANSI C Section 4.5 --- Mathematics
44
45@example
[2a087f3]46acos(), Function, Implemented
47asin(), Function, Implemented
48atan(), Function, Implemented
49atan2(), Function, Implemented
50cos(), Function, Implemented
51sin(), Function, Implemented
52tan(), Function, Implemented
53cosh(), Function, Implemented
54sinh(), Function, Implemented
55tanh(), Function, Implemented
56exp(), Function, Implemented
57frexp(), Function, Implemented
58ldexp(), Function, Implemented
59log(), Function, Implemented
60log10(), Function, Implemented
61modf(), Function, Implemented
62pow(), Function, Implemented
63sqrt(), Function, Implemented
64ceil(), Function, Implemented
65fabs(), Function, Implemented
66floor(), Function, Implemented
67fmod(), Function, Implemented
[0874502]68@end example
69
70ANSI C Section 4.6 --- Non-Local Jumps
71
72@example
[2a087f3]73setjmp(), Function, Implemented
74longjmp(), Function, Implemented
[0874502]75@end example
76
77ANSI C Section 4.9 --- Input/Output
78
79@example
[6984a19]80FILE, Type, Implemented
[2a087f3]81clearerr(), Function, Implemented
82fclose(), Function, Implemented
83feof(), Function, Implemented
84ferror(), Function, Implemented
85fflush(), Function, Implemented
86fgetc(), Function, Implemented
87fgets(), Function, Implemented
88fopen(), Function, Implemented
89fputc(), Function, Implemented
90fputs(), Function, Implemented
91fread(), Function, Implemented
92freopen(), Function, Implemented
93fseek(), Function, Implemented
94ftell(), Function, Implemented
95fwrite(), Function, Implemented
96getc(), Function, Implemented
97getchar(), Function, Implemented
98gets(), Function, Implemented
99perror(), Function, Implemented
100printf(), Function, Implemented
101fprintf(), Function, Implemented
102sprintf(), Function, Implemented
103putc(), Function, Implemented
104putchar(), Function, Implemented
105puts(), Function, Implemented
106remove(), Function, Implemented
107rewind(), Function, Implemented
108scanf(), Function, Implemented
109fscanf(), Function, Implemented
110sscanf(), Function, Implemented
111setbuf(), Function, Implemented
112tmpfile(), Function, Implemented
113tmpnam(), Function, Implemented
114ungetc(), Function, Implemented
[0874502]115@end example
116
[c78be42]117NOTE: @code{rename} is also included in another section.  @ref{Rename a File}.
118
[0874502]119ANSI C Section 4.10 --- General Utilities
120
121@example
[2a087f3]122abs(), Function, Implemented
123atof(), Function, Implemented
124atoi(), Function, Implemented
125atol(), Function, Implemented
126rand(), Function, Implemented
127srand(), Function, Implemented
128calloc(), Function, Implemented
129free(), Function, Implemented
130malloc(), Function, Implemented
131realloc(), Function, Implemented
132abort(), Function, Implemented
133exit(), Function, Implemented
134bsearch(), Function, Implemented
135qsort(), Function, Implemented
[0874502]136@end example
137
[c78be42]138NOTE: @code{getenv} is also included in another section. 
139@ref{Environment Access}.
140
[0874502]141ANSI C Section 4.11 --- String Handling
142
143@example
[2a087f3]144strcpy(), Function, Implemented
145strncpy(), Function, Implemented
146strcat(), Function, Implemented
147strncat(), Function, Implemented
148strcmp(), Function, Implemented
149strncmp(), Function, Implemented
150strchr(), Function, Implemented
151strcspn(), Function, Implemented
152strpbrk(), Function, Implemented
153strrchr(), Function, Implemented
154strspn(), Function, Implemented
155strstr(), Function, Implemented
156strtok(), Function, Implemented
157strlen(), Function, Implemented
[0874502]158@end example
159
160ANSI C Section 4.12 --- Date and Time Handling
161
162@example
[2a087f3]163asctime(), Function, Implemented
164ctime(), Function, Implemented
165gmtime(), Function, Implemented
166localtime(), Function, Implemented
167mktime(), Function, Implemented
168strftime(), Function, Implemented
[0874502]169@end example
170
[2a087f3]171NOTE: RTEMS has no notion of time zones.
172
[c78be42]173NOTE: @code{time} is also included in another section. 
174@ref{Get System Time}.
175
[7331714]176From Surrounding Text
177
178@example
[180ca02]179EXIT_SUCCESS, Constant, Implemented
180EXIT_FAILURE, Constant, Implemented
[7331714]181@end example
182
183
[2d19ed6c]184@subsection Extensions to Time Functions
[0874502]185
[5ed1beb5]186@subsection Extensions to setlocale Function
[0874502]187
[7331714]188@example
[180ca02]189LC_CTYPE, Constant, Implemented
190LC_COLLATE, Constant, Implemented
191LC_TIME, Constant, Implemented
192LC_NUMERIC, Constant, Implemented
193LC_MONETARY, Constant, Implemented
194LC_ALL, Constant, Implemented
[7331714]195@end example
196
[2d19ed6c]197@section C Language Input/Output Functions
[0874502]198
[2d19ed6c]199@subsection Map a Stream Pointer to a File Descriptor
[0874502]200
201@example
[2a087f3]202fileno(), Function, Implemented
[180ca02]203STDIN_FILENO, Constant, Implemented
204STDOUT_FILENO, Constant, Implemented
[bda1a73]205STDERR_FILENO, Constant, Implemented
[0874502]206@end example
207
[2d19ed6c]208@subsection Open a Stream on a File Descriptor
[0874502]209
210@example
[2a087f3]211fdopen(), Function, Implemented
[0874502]212@end example
213
[2d19ed6c]214@subsection Interactions of Other FILE-Type C Functions
[0874502]215
[5ed1beb5]216@subsection Operations on Files - the remove Function
[0874502]217
[5ed1beb5]218@subsection Temporary File Name - the tmpnam Function
[0874502]219
[2d19ed6c]220@subsection Stdio Locking Functions
[0874502]221
222@example
[2a087f3]223flockfile(), Function, Unimplemented
224ftrylockfile(), Function, Unimplemented
225funlockfile(), Function, Unimplemented
[0874502]226@end example
227
[2d19ed6c]228@subsection Stdio With Explicit Client Locking
[0874502]229
230@example
[2a087f3]231getc_unlocked(), Function, Unimplemented
232getchar_unlocked(), Function, Unimplemented
233putc_unlocked(), Function, Unimplemented
234putchar_unlocked(), Function, Unimplemented
[0874502]235@end example
236
[2d19ed6c]237@section Other C Language Functions
[0874502]238
[2d19ed6c]239@subsection Nonlocal Jumps
[0874502]240
241@example
[6984a19]242sigjmp_buf, Type, Unimplemented
[2a087f3]243sigsetjmp(), Function, Unimplemented
244siglongjmp(), Function, Unimplemented
[0874502]245@end example
246
[2d19ed6c]247@subsection Set Time Zone
[0874502]248
249@example
[2a087f3]250tzset(), Function, Unimplemented
[0874502]251@end example
252
[2d19ed6c]253@subsection Find String Token
[0874502]254
255@example
[2a087f3]256strtok_r(), Function, Implemented
[0874502]257@end example
258
[2d19ed6c]259@subsection ASCII Time Representation
[0874502]260
261@example
[2a087f3]262asctime_r(), Function, Implemented
[0874502]263@end example
264
[2d19ed6c]265@subsection Current Time Representation
[0874502]266
267@example
[2a087f3]268ctime_r(), Function, Implemented
[0874502]269@end example
270
[2d19ed6c]271@subsection Coordinated Universal Time
[0874502]272
273@example
[2a087f3]274gmtime_r(), Function, Implemented
[0874502]275@end example
276
[2d19ed6c]277@subsection Local Time
[0874502]278
279@example
[2a087f3]280localtime_r(), Function, Implemented
[0874502]281@end example
282
[2d19ed6c]283@subsection Pseudo-Random Sequence Generation Functions
284
[0874502]285@example
[2a087f3]286rand_r(), Function, Implemented
[0874502]287@end example
288
Note: See TracBrowser for help on using the repository browser.