-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathtest.c
More file actions
41 lines (35 loc) · 1.14 KB
/
test.c
File metadata and controls
41 lines (35 loc) · 1.14 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
/*
* PeachCompiler C Compiler Project
* Copyright (C) 2026 Daniel McCarthy <daniel@dragonzap.com>
* This file is part of the PeachCompiler.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* version 2 as published by the Free Software Foundation.
*
* 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 version 2 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 full source code, documentation, and structured learning,
* see the official compiler development video course by Daniel McCarthy here:
* dragonzap.com/course/creating-a-c-compiler-from-scratch
*
* Learn to build your own C compiler from scratch with that video course over 39 hours of video content available.
*/
struct abc
{
int a;
int b;
};
struct abc
{
};
void test(int a, int b)
{
return;
}