This commit is contained in:
Saturneric 2018-06-12 13:51:42 +08:00
parent 768eee06df
commit c1568c3a5f
10 changed files with 16 additions and 0 deletions

3
.gitignore vendored
View File

@ -3,3 +3,6 @@
################################################################################ ################################################################################
/Debug /Debug
/.vs/ZE-Standard-Libraries/v15
/ZE-Standard-Libraries
/ZE-Standard-Libraries.sln

Binary file not shown.

Binary file not shown.

Binary file not shown.

10
main.c Normal file
View File

@ -0,0 +1,10 @@
#include<stdio.h>
int stack(void);
int list(void);
int main(int argc, char **argv) {
stack();
getchar();
return 0;
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

1
tree/tree.c Normal file
View File

@ -0,0 +1 @@
#include

2
tree/tree.h Normal file
View File

@ -0,0 +1,2 @@
#pragma once