-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHeaders.c
58 lines (43 loc) · 2.18 KB
/
Headers.c
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*
* Header File Explanations
*/
/* <assert.h> Contains information for adding diagnostics that aid program debugging. */
#include <assert.h>
/* <ctype.h> Contains function prototypes for functions that test characters for certain properties,
* and function prototypes for functions that can be used to convert lowercase letters to uppercase
* letters and vice versa. */
#include <ctype.h>
/* <errno.h> Defines macros that are useful for reporting error conditions. */
#include <errno.h>
/* <float.h> Contains the floating-point size limits of the system. */
#include <float.h>
/* <limits.h> Contains the integral size limits of the system. */
#include <limits.h>
/* <locale.h> Contains function prototypes and other information that enables a program to
* be modified for the current locale on which it’s running. The notion of locale
* enables the computer system to handle different conventions for expressing data
* such as dates, times, currency amounts, and large numbers throughout the world. */
#include <locale.h>
/* <math.h> Contains function prototypes for math library functions. */
#include <math.h>
/* <setjmp.h> Contains function prototypes for functions that allow bypassing of the usual
* function call and return sequence. */
#include <setjmp.h>
/* <signal.h> Contains function prototypes and macros to handle various conditions that may
* arise during program execution. */
#include <signal.h>
/* <stdarg.h> Defines macros for dealing with a list of arguments to a function whose number
* and types are unknown. */
#include <stdarg.h>
/* <stddef.h> Contains common type definitions used by C for performing calculations. */
#include <stddef.h>
/* <stdio.h> Contains function prototypes for the standard input/output library functions,
* and information used by them. */
#include <stdio.h>
/* <stdlib.h> Contains function prototypes for conversions of numbers to text and text to
* numbers, memory allocation, random numbers, and other utility functions. */
#include <stdlib.h>
/* <string.h> Contains function prototypes for string-processing functions. */
#include <string.h>
/* <time.h> Contains function prototypes and types for manipulating the time and date. */
#include <time.h>