-
Notifications
You must be signed in to change notification settings - Fork 0
/
headers.html
44 lines (34 loc) · 1.44 KB
/
headers.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!-- c99 library/headers -->
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>C standard library</title>
<meta content="width=device-width,initial-scale=1,user-scalable=no" name=viewport>
<script src="style.js" defer></script>
</head><body><h1 id=about-me>C standard library is defined by the following</h3>
'<b>assert.h</b>' condition that compares arguments to zero
'<b>errno.h</b>'
'<b>pthreads.h</b>' standards based thread api
'<b>fenv.h</b>' floating-point status flags and control modes
'<b>iso646.h</b>' alternative operators as well as digraphs and
trigraphs
'<b>limits.h</b>' ranges of integer types
'<b>locale.h</b>' localization
'<b>stdarg.h</b>' variadic arguments <em>'...'</em>
'<b>stddef.h</b>' macro definitions as well as '<b>stdbool.h</b>'
'<b>stdint.h</b>' fixed-width integer types
'<b>inttypes.h</b>'
'<b>ctype.h</b>'
'<b>stdio.h</b>' standard io utilities <em>e.g. printf</em>
'<b>stdlib.h</b>' includes dynamic memory allocation <em>e.g. malloc</em>
'<b>signal.h</b>' '<b>setjmp.h</b>'
'<b>string.h</b>' includes handles to strings and character manipula-
<em>e.g. memcpy</em>
'<b>tgmath.h</b>' includes '<b>math.h</b>' and '<b>complex.h</b>'
'<b>float.h</b>'
'<b>time.h</b>' time/date utilities
'<b>wchar.h</b>' multibyte and wide character utilities
'<b>wctype.h</b>' functions to determine the type contained in wide
character data
</body></html>