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
Line 
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
10
11@section Referenced C Language Routines
12
13ANSI C Section 4.2 --- Diagnostics
14
15@example
16assert(), Function, Implemented
17@end example
18
19ANSI C Section 4.3 --- Character Handling
20
21@example
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
35@end example
36
37ANSI C Section 4.4 --- Localization
38
39@example
40setlocale(), Function, Partial Implementation
41@end example
42
43ANSI C Section 4.5 --- Mathematics
44
45@example
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
68@end example
69
70ANSI C Section 4.6 --- Non-Local Jumps
71
72@example
73setjmp(), Function, Implemented
74longjmp(), Function, Implemented
75@end example
76
77ANSI C Section 4.9 --- Input/Output
78
79@example
80FILE, Type, Implemented
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
115@end example
116
117NOTE: @code{rename} is also included in another section.  @ref{Rename a File}.
118
119ANSI C Section 4.10 --- General Utilities
120
121@example
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
136@end example
137
138NOTE: @code{getenv} is also included in another section. 
139@ref{Environment Access}.
140
141ANSI C Section 4.11 --- String Handling
142
143@example
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
158@end example
159
160ANSI C Section 4.12 --- Date and Time Handling
161
162@example
163asctime(), Function, Implemented
164ctime(), Function, Implemented
165gmtime(), Function, Implemented
166localtime(), Function, Implemented
167mktime(), Function, Implemented
168strftime(), Function, Implemented
169@end example
170
171NOTE: RTEMS has no notion of time zones.
172
173NOTE: @code{time} is also included in another section. 
174@ref{Get System Time}.
175
176From Surrounding Text
177
178@example
179EXIT_SUCCESS, Constant, Implemented
180EXIT_FAILURE, Constant, Implemented
181@end example
182
183
184@subsection Extensions to Time Functions
185
186@subsection Extensions to setlocale Function
187
188@example
189LC_CTYPE, Constant, Implemented
190LC_COLLATE, Constant, Implemented
191LC_TIME, Constant, Implemented
192LC_NUMERIC, Constant, Implemented
193LC_MONETARY, Constant, Implemented
194LC_ALL, Constant, Implemented
195@end example
196
197@section C Language Input/Output Functions
198
199@subsection Map a Stream Pointer to a File Descriptor
200
201@example
202fileno(), Function, Implemented
203STDIN_FILENO, Constant, Implemented
204STDOUT_FILENO, Constant, Implemented
205STDERR_FILENO, Constant, Implemented
206@end example
207
208@subsection Open a Stream on a File Descriptor
209
210@example
211fdopen(), Function, Implemented
212@end example
213
214@subsection Interactions of Other FILE-Type C Functions
215
216@subsection Operations on Files - the remove Function
217
218@subsection Temporary File Name - the tmpnam Function
219
220@subsection Stdio Locking Functions
221
222@example
223flockfile(), Function, Unimplemented
224ftrylockfile(), Function, Unimplemented
225funlockfile(), Function, Unimplemented
226@end example
227
228@subsection Stdio With Explicit Client Locking
229
230@example
231getc_unlocked(), Function, Unimplemented
232getchar_unlocked(), Function, Unimplemented
233putc_unlocked(), Function, Unimplemented
234putchar_unlocked(), Function, Unimplemented
235@end example
236
237@section Other C Language Functions
238
239@subsection Nonlocal Jumps
240
241@example
242sigjmp_buf, Type, Unimplemented
243sigsetjmp(), Function, Unimplemented
244siglongjmp(), Function, Unimplemented
245@end example
246
247@subsection Set Time Zone
248
249@example
250tzset(), Function, Unimplemented
251@end example
252
253@subsection Find String Token
254
255@example
256strtok_r(), Function, Implemented
257@end example
258
259@subsection ASCII Time Representation
260
261@example
262asctime_r(), Function, Implemented
263@end example
264
265@subsection Current Time Representation
266
267@example
268ctime_r(), Function, Implemented
269@end example
270
271@subsection Coordinated Universal Time
272
273@example
274gmtime_r(), Function, Implemented
275@end example
276
277@subsection Local Time
278
279@example
280localtime_r(), Function, Implemented
281@end example
282
283@subsection Pseudo-Random Sequence Generation Functions
284
285@example
286rand_r(), Function, Implemented
287@end example
288
Note: See TracBrowser for help on using the repository browser.