Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
L
linked_list2
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Liam E. Roeth
linked_list2
Commits
118be38a
Commit
118be38a
authored
Sep 17, 2020
by
h702579998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Made the function names in test.c lowercase in order to fit the rest of the files
parent
9f539681
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
test.c
test.c
+5
-5
No files found.
test.c
View file @
118be38a
...
...
@@ -7,11 +7,11 @@ int main(){
NODE
*
one
=
construct
(
1
,
two
);
NODE
*
root
=
construct
(
0
,
one
);
Print_L
ist
(
root
);
NODE
*
target
=
S
earch
(
root
,
2
);
Print_N
ode
(
target
);
Delete_L
ist
(
root
);
Print_L
ist
(
root
);
print_l
ist
(
root
);
NODE
*
target
=
s
earch
(
root
,
2
);
print_n
ode
(
target
);
delete_l
ist
(
root
);
print_l
ist
(
root
);
return
1
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment