├── LICENSE ├── README.md ├── calc ├── LICENSE ├── Makefile ├── README.md └── calc.c ├── cinema ├── LICENSE ├── Makefile ├── README.md └── tickets.cpp └── thread_xml ├── LICENSE ├── Makefile ├── README.md ├── input.xml └── thread.c /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarun/Fun-Projects/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarun/Fun-Projects/HEAD/README.md -------------------------------------------------------------------------------- /calc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarun/Fun-Projects/HEAD/calc/LICENSE -------------------------------------------------------------------------------- /calc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarun/Fun-Projects/HEAD/calc/Makefile -------------------------------------------------------------------------------- /calc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarun/Fun-Projects/HEAD/calc/README.md -------------------------------------------------------------------------------- /calc/calc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarun/Fun-Projects/HEAD/calc/calc.c -------------------------------------------------------------------------------- /cinema/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarun/Fun-Projects/HEAD/cinema/LICENSE -------------------------------------------------------------------------------- /cinema/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarun/Fun-Projects/HEAD/cinema/Makefile -------------------------------------------------------------------------------- /cinema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarun/Fun-Projects/HEAD/cinema/README.md -------------------------------------------------------------------------------- /cinema/tickets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarun/Fun-Projects/HEAD/cinema/tickets.cpp -------------------------------------------------------------------------------- /thread_xml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarun/Fun-Projects/HEAD/thread_xml/LICENSE -------------------------------------------------------------------------------- /thread_xml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarun/Fun-Projects/HEAD/thread_xml/Makefile -------------------------------------------------------------------------------- /thread_xml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarun/Fun-Projects/HEAD/thread_xml/README.md -------------------------------------------------------------------------------- /thread_xml/input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarun/Fun-Projects/HEAD/thread_xml/input.xml -------------------------------------------------------------------------------- /thread_xml/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarun/Fun-Projects/HEAD/thread_xml/thread.c --------------------------------------------------------------------------------