-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTemplate.h
More file actions
executable file
·99 lines (79 loc) · 2.52 KB
/
Template.h
File metadata and controls
executable file
·99 lines (79 loc) · 2.52 KB
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
/*BINFMTC: -DSTANDALONE___TEMPLATE__
*/
/* Copyright (C) 2021 Nathan Paul Simons (2hmuFQDSHf-code@hardcorehackers.com)
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/>.
*/
#ifndef __TEMPLATE___H_
# define __TEMPLATE___H_
# ifdef __cplusplus
extern "C"
{
# endif /* # ifdef __cplusplus */
# ifdef STANDALONE___TEMPLATE__
/* For puts(). */
# include <stdio.h>
/* For errno. */
# include <errno.h>
# define main_cleanup() \
{ \
} /* # define main_cleanup() */
# define main_error(a) \
{ \
if (errno == 0) errno = -1; \
perror(a); \
main_cleanup(); \
return errno; \
} /* # define main_error(a) */
/** 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 index = 0;
if (argc < 1 ||
argv[index] == NULL)
{
main_error("arguments error");
}
for (index = 0; index < argc; index++)
{
if (fprintf(stdout, "%s\n", argv[index]) <= 0)
{
main_error("fprintf()");
}
}
if (fputs("Hello, world!\n", stdout) < 0)
{
main_error("fputs()");
}
/* Do some stuff here to test this header. */
main_cleanup();
return EXIT_SUCCESS;
}
# endif /* # ifdef STANDALONE___TEMPLATE__ */
# ifdef __cplusaplus
} /* extern "C" */
# endif /* # ifdef __cplusplus */
#endif /* #ifndef __TEMPLATE___H_ */
/* Local Variables:
mode: C
End:
vi: fileformat=unix expandtab shiftwidth=2 tabstop=2
*/