-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTemplate.c
executable file
·101 lines (81 loc) · 2.28 KB
/
Template.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/*BINFMTC: -DSTANDALONE
*/
/* Copyright (C) 2021 Nathan Paul Simons ([email protected])
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
/* For errno. */
#include <errno.h>
/* For fprintf(), perror(), stdout and puts(). */
#include <stdio.h>
/* For EXIT_SUCCESS and EXIT_FAILURE. */
#include <stdlib.h>
int TrabbPardoKnuth(void);
int TrabbPardoKnuth(void)
{
int retval = EXIT_SUCCESS;
if (fputs("Please input eleven (11) numbers\n", stdout) < 32)
{
retval = EXIT_FAILURE;
perror("fputs()");
goto TrabbPardoKnuth_cleanup;
}
TrabbPardoKnuth_cleanup:
return retval;
}
#if defined STANDALONE
/** Main entry to program.
*
* Checks arguments, prints them out, prints "Hello, world!", prints a
* newline, then exits.
*
* \param argc Number of arguments.
* \param argv Arguments.
* \return EXIT_SUCCESS success, EXIT_FAILURE otherwise.
*/
int
main(int argc,
char *argv[])
{
int retval = EXIT_SUCCESS;
int index = 0;
if (argc < 1 ||
argv[index] == NULL)
{
retval = EXIT_FAILURE;
perror("arguments error");
goto main_cleanup;
}
for (index = 0; index < argc; index++)
{
if (fprintf(stdout, "%s\n", argv[index]) <= 0)
{
retval = EXIT_FAILURE;
perror("fprintf()");
goto main_cleanup;
}
}
if (fputs("Hello, world!\n", stdout) < 0)
{
retval = EXIT_FAILURE;
perror("fputs()");
goto main_cleanup;
}
main_cleanup:
/* Do cleanup here. */
return retval;
} /* int main (int argc, char *argv[]) */
#endif /* #if defined STANDALONE */
/* Local Variables:
mode: C
End:
vi: fileformat=unix expandtab shiftwidth=2 tabstop=2
*/