├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── docs └── TODO-LIST.md └── src ├── buy.c ├── csv.c ├── globals.h ├── help.c ├── history.c ├── info.c ├── load.c ├── main.c ├── menu.c ├── save.c ├── sell.c └── util.c /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *~ 3 | a.out 4 | market-sim 5 | port* 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/built1n/market-sim/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/built1n/market-sim/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/built1n/market-sim/HEAD/README.md -------------------------------------------------------------------------------- /docs/TODO-LIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/built1n/market-sim/HEAD/docs/TODO-LIST.md -------------------------------------------------------------------------------- /src/buy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/built1n/market-sim/HEAD/src/buy.c -------------------------------------------------------------------------------- /src/csv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/built1n/market-sim/HEAD/src/csv.c -------------------------------------------------------------------------------- /src/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/built1n/market-sim/HEAD/src/globals.h -------------------------------------------------------------------------------- /src/help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/built1n/market-sim/HEAD/src/help.c -------------------------------------------------------------------------------- /src/history.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/built1n/market-sim/HEAD/src/history.c -------------------------------------------------------------------------------- /src/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/built1n/market-sim/HEAD/src/info.c -------------------------------------------------------------------------------- /src/load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/built1n/market-sim/HEAD/src/load.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/built1n/market-sim/HEAD/src/main.c -------------------------------------------------------------------------------- /src/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/built1n/market-sim/HEAD/src/menu.c -------------------------------------------------------------------------------- /src/save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/built1n/market-sim/HEAD/src/save.c -------------------------------------------------------------------------------- /src/sell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/built1n/market-sim/HEAD/src/sell.c -------------------------------------------------------------------------------- /src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/built1n/market-sim/HEAD/src/util.c --------------------------------------------------------------------------------