├── .gitignore ├── 02_greet ├── greet01.c ├── greet02.c ├── greet03.c ├── greet04.c ├── greet05.c ├── moon01.c ├── pithy.txt ├── pithy01.c ├── pithy02.c ├── pithy03.c ├── pithy04.c ├── pithy05.c ├── pithy06.c ├── time01.c └── time02.c ├── 03_nato ├── fuzz01.c ├── nato01.c ├── nato02.c ├── nato03.c ├── nato04.c ├── nato05.c ├── word_parse01.c └── word_parse02.c ├── 04_caesar ├── buffering01.c ├── caesar01.c ├── caesar02.c ├── caesar03.c ├── caesar04.c ├── censored01.c ├── filter01.c ├── filter02.c ├── filter03.c ├── hexfilter01.c ├── hexfilter02.c ├── nato01.c ├── stream01.c └── wordfilter01.c ├── 05_encoding ├── asciitable01.c ├── binascii01.c ├── casetricks01.c ├── checksum01.c ├── hexdecode01.c ├── hexdecode02.c ├── hexdecode03.c ├── hexdecode04.c ├── hexdefilter01.c ├── hexencode01.c ├── hexencode02.c ├── hexenfilter01.c ├── urldecoder01.c ├── urldecoder02.c └── urlencoder01.c ├── 06_passwords ├── adjective.txt ├── brutepass01.c ├── madlib01.c ├── madlib02.c ├── noun.txt ├── passwords01.c ├── passwords02.c ├── passwords03.c ├── randomp01.c ├── randomp02.c ├── randomp03.c ├── randomp04.c ├── randwords01.c └── verb.txt ├── 07_strings ├── empty-null.c ├── libsample.c ├── mystring.c ├── mystring.h ├── strappend.c ├── strcaps.c ├── strcat.c ├── string_object.c ├── string_size.c ├── strinsert.c ├── strlower.c ├── strrev.c ├── strsplit.c ├── strtabs.c ├── struct_funct.c ├── strupper.c ├── strwords.c ├── strwords2.c └── trimming.c ├── 08_unicode ├── code_love.c ├── cyrillic.c ├── extended_ascii.c ├── greek_read01.c ├── greek_read02.c ├── greek_write.c ├── hello_wworld01.c ├── hello_wworld02.c ├── locale_function.c ├── mood.c ├── morse_code_filter.c ├── suits.c ├── wide_hello.c ├── wide_in.c ├── wide_in_better.c ├── wscanf.c ├── yen01.c └── yen02.c ├── 09_hexdump ├── byte_sizes.c ├── byte_values01.c ├── byte_values02.c ├── byte_values03.c ├── byte_values04.c ├── byte_values05.c ├── byte_values06.c ├── bytes.dat ├── dumpfile01.c ├── dumpfile02.c ├── dumpfile03.c ├── dumpfile04.c ├── dumpfile05.c ├── dumpfile06.c ├── dumpfile07.c ├── limits.c ├── options01.c ├── options02.c ├── options03.c └── sonnet18.txt ├── 10_dirtree ├── changecwd.c ├── dirtree01.c ├── dirtree02.c ├── dirtree03.c ├── dirtree04.c ├── extractor.c ├── fileinfo01.c ├── fileinfo02.c ├── fileinfo03.c ├── fileinfo04.c ├── fileinfo05.c ├── getcwd.c ├── readdir01.c ├── readdir02.c ├── readdir03.c ├── readdir04.c ├── subdir01.c ├── subdir02.c ├── subdir03.c ├── subdir04.c ├── subdir05.c └── subdir06.c ├── 11_filefind ├── finddupe01.c ├── finddupe02.c ├── finddupe03.c ├── finddupe04.c ├── finddupe05.c ├── findfile01.c ├── findfile02.c ├── glob01.c └── glob02.c ├── 12_holiday ├── easter01.c ├── gauntlet01.c ├── gauntlet02.c ├── getdate01.c ├── getdate02.c ├── getdate03.c ├── getdate04.c ├── isholiday01.c ├── isholiday02.c ├── isholiday03.c ├── isholiday04.c ├── isholiday05.c ├── isholiday06.c ├── isholiday07.c ├── return01.c ├── return02.c └── return03.c ├── 13_calendar ├── ansi01.c ├── ansi02.c ├── holiday_year.h ├── isholiday.c ├── leapyear01.c ├── month01.c ├── month02.c ├── month03.c ├── month04.c ├── thefirst01.c ├── thefirst02.c ├── thefirst03.c ├── timezone01.c ├── timezone02.c ├── week01.c ├── week02.c ├── week03.c ├── week04.c ├── weekday01.c ├── weekday02.c ├── weekday03.c ├── year01.c ├── year02.c ├── year03.c ├── year04.c ├── year05.c └── year06.c ├── 14_lotto ├── lotto01.c ├── lotto02.c ├── lotto03.c ├── lotto04.c ├── lotto05.c ├── lotto06.c ├── lotto07.c ├── lotto08.c ├── lotto09.c ├── odds01.c ├── odds02.c ├── odds03.c ├── odds04.c ├── random01.c ├── random02.c └── random03.c └── 15_tictactoe ├── ttt01.c ├── ttt02.c ├── ttt03.c ├── ttt04.c ├── ttt05.c ├── ttt06.c └── ttt07.c /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /02_greet/greet01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/02_greet/greet01.c -------------------------------------------------------------------------------- /02_greet/greet02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/02_greet/greet02.c -------------------------------------------------------------------------------- /02_greet/greet03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/02_greet/greet03.c -------------------------------------------------------------------------------- /02_greet/greet04.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/02_greet/greet04.c -------------------------------------------------------------------------------- /02_greet/greet05.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/02_greet/greet05.c -------------------------------------------------------------------------------- /02_greet/moon01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/02_greet/moon01.c -------------------------------------------------------------------------------- /02_greet/pithy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/02_greet/pithy.txt -------------------------------------------------------------------------------- /02_greet/pithy01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/02_greet/pithy01.c -------------------------------------------------------------------------------- /02_greet/pithy02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/02_greet/pithy02.c -------------------------------------------------------------------------------- /02_greet/pithy03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/02_greet/pithy03.c -------------------------------------------------------------------------------- /02_greet/pithy04.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/02_greet/pithy04.c -------------------------------------------------------------------------------- /02_greet/pithy05.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/02_greet/pithy05.c -------------------------------------------------------------------------------- /02_greet/pithy06.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/02_greet/pithy06.c -------------------------------------------------------------------------------- /02_greet/time01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/02_greet/time01.c -------------------------------------------------------------------------------- /02_greet/time02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/02_greet/time02.c -------------------------------------------------------------------------------- /03_nato/fuzz01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/03_nato/fuzz01.c -------------------------------------------------------------------------------- /03_nato/nato01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/03_nato/nato01.c -------------------------------------------------------------------------------- /03_nato/nato02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/03_nato/nato02.c -------------------------------------------------------------------------------- /03_nato/nato03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/03_nato/nato03.c -------------------------------------------------------------------------------- /03_nato/nato04.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/03_nato/nato04.c -------------------------------------------------------------------------------- /03_nato/nato05.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/03_nato/nato05.c -------------------------------------------------------------------------------- /03_nato/word_parse01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/03_nato/word_parse01.c -------------------------------------------------------------------------------- /03_nato/word_parse02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/03_nato/word_parse02.c -------------------------------------------------------------------------------- /04_caesar/buffering01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/04_caesar/buffering01.c -------------------------------------------------------------------------------- /04_caesar/caesar01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/04_caesar/caesar01.c -------------------------------------------------------------------------------- /04_caesar/caesar02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/04_caesar/caesar02.c -------------------------------------------------------------------------------- /04_caesar/caesar03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/04_caesar/caesar03.c -------------------------------------------------------------------------------- /04_caesar/caesar04.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/04_caesar/caesar04.c -------------------------------------------------------------------------------- /04_caesar/censored01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/04_caesar/censored01.c -------------------------------------------------------------------------------- /04_caesar/filter01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/04_caesar/filter01.c -------------------------------------------------------------------------------- /04_caesar/filter02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/04_caesar/filter02.c -------------------------------------------------------------------------------- /04_caesar/filter03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/04_caesar/filter03.c -------------------------------------------------------------------------------- /04_caesar/hexfilter01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/04_caesar/hexfilter01.c -------------------------------------------------------------------------------- /04_caesar/hexfilter02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/04_caesar/hexfilter02.c -------------------------------------------------------------------------------- /04_caesar/nato01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/04_caesar/nato01.c -------------------------------------------------------------------------------- /04_caesar/stream01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/04_caesar/stream01.c -------------------------------------------------------------------------------- /04_caesar/wordfilter01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/04_caesar/wordfilter01.c -------------------------------------------------------------------------------- /05_encoding/asciitable01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/05_encoding/asciitable01.c -------------------------------------------------------------------------------- /05_encoding/binascii01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/05_encoding/binascii01.c -------------------------------------------------------------------------------- /05_encoding/casetricks01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/05_encoding/casetricks01.c -------------------------------------------------------------------------------- /05_encoding/checksum01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/05_encoding/checksum01.c -------------------------------------------------------------------------------- /05_encoding/hexdecode01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/05_encoding/hexdecode01.c -------------------------------------------------------------------------------- /05_encoding/hexdecode02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/05_encoding/hexdecode02.c -------------------------------------------------------------------------------- /05_encoding/hexdecode03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/05_encoding/hexdecode03.c -------------------------------------------------------------------------------- /05_encoding/hexdecode04.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/05_encoding/hexdecode04.c -------------------------------------------------------------------------------- /05_encoding/hexdefilter01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/05_encoding/hexdefilter01.c -------------------------------------------------------------------------------- /05_encoding/hexencode01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/05_encoding/hexencode01.c -------------------------------------------------------------------------------- /05_encoding/hexencode02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/05_encoding/hexencode02.c -------------------------------------------------------------------------------- /05_encoding/hexenfilter01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/05_encoding/hexenfilter01.c -------------------------------------------------------------------------------- /05_encoding/urldecoder01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/05_encoding/urldecoder01.c -------------------------------------------------------------------------------- /05_encoding/urldecoder02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/05_encoding/urldecoder02.c -------------------------------------------------------------------------------- /05_encoding/urlencoder01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/05_encoding/urlencoder01.c -------------------------------------------------------------------------------- /06_passwords/adjective.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/06_passwords/adjective.txt -------------------------------------------------------------------------------- /06_passwords/brutepass01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/06_passwords/brutepass01.c -------------------------------------------------------------------------------- /06_passwords/madlib01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/06_passwords/madlib01.c -------------------------------------------------------------------------------- /06_passwords/madlib02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/06_passwords/madlib02.c -------------------------------------------------------------------------------- /06_passwords/noun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/06_passwords/noun.txt -------------------------------------------------------------------------------- /06_passwords/passwords01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/06_passwords/passwords01.c -------------------------------------------------------------------------------- /06_passwords/passwords02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/06_passwords/passwords02.c -------------------------------------------------------------------------------- /06_passwords/passwords03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/06_passwords/passwords03.c -------------------------------------------------------------------------------- /06_passwords/randomp01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/06_passwords/randomp01.c -------------------------------------------------------------------------------- /06_passwords/randomp02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/06_passwords/randomp02.c -------------------------------------------------------------------------------- /06_passwords/randomp03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/06_passwords/randomp03.c -------------------------------------------------------------------------------- /06_passwords/randomp04.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/06_passwords/randomp04.c -------------------------------------------------------------------------------- /06_passwords/randwords01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/06_passwords/randwords01.c -------------------------------------------------------------------------------- /06_passwords/verb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/06_passwords/verb.txt -------------------------------------------------------------------------------- /07_strings/empty-null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/07_strings/empty-null.c -------------------------------------------------------------------------------- /07_strings/libsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/07_strings/libsample.c -------------------------------------------------------------------------------- /07_strings/mystring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/07_strings/mystring.c -------------------------------------------------------------------------------- /07_strings/mystring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/07_strings/mystring.h -------------------------------------------------------------------------------- /07_strings/strappend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/07_strings/strappend.c -------------------------------------------------------------------------------- /07_strings/strcaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/07_strings/strcaps.c -------------------------------------------------------------------------------- /07_strings/strcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/07_strings/strcat.c -------------------------------------------------------------------------------- /07_strings/string_object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/07_strings/string_object.c -------------------------------------------------------------------------------- /07_strings/string_size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/07_strings/string_size.c -------------------------------------------------------------------------------- /07_strings/strinsert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/07_strings/strinsert.c -------------------------------------------------------------------------------- /07_strings/strlower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/07_strings/strlower.c -------------------------------------------------------------------------------- /07_strings/strrev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/07_strings/strrev.c -------------------------------------------------------------------------------- /07_strings/strsplit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/07_strings/strsplit.c -------------------------------------------------------------------------------- /07_strings/strtabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/07_strings/strtabs.c -------------------------------------------------------------------------------- /07_strings/struct_funct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/07_strings/struct_funct.c -------------------------------------------------------------------------------- /07_strings/strupper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/07_strings/strupper.c -------------------------------------------------------------------------------- /07_strings/strwords.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/07_strings/strwords.c -------------------------------------------------------------------------------- /07_strings/strwords2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/07_strings/strwords2.c -------------------------------------------------------------------------------- /07_strings/trimming.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/07_strings/trimming.c -------------------------------------------------------------------------------- /08_unicode/code_love.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/08_unicode/code_love.c -------------------------------------------------------------------------------- /08_unicode/cyrillic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/08_unicode/cyrillic.c -------------------------------------------------------------------------------- /08_unicode/extended_ascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/08_unicode/extended_ascii.c -------------------------------------------------------------------------------- /08_unicode/greek_read01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/08_unicode/greek_read01.c -------------------------------------------------------------------------------- /08_unicode/greek_read02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/08_unicode/greek_read02.c -------------------------------------------------------------------------------- /08_unicode/greek_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/08_unicode/greek_write.c -------------------------------------------------------------------------------- /08_unicode/hello_wworld01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/08_unicode/hello_wworld01.c -------------------------------------------------------------------------------- /08_unicode/hello_wworld02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/08_unicode/hello_wworld02.c -------------------------------------------------------------------------------- /08_unicode/locale_function.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/08_unicode/locale_function.c -------------------------------------------------------------------------------- /08_unicode/mood.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/08_unicode/mood.c -------------------------------------------------------------------------------- /08_unicode/morse_code_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/08_unicode/morse_code_filter.c -------------------------------------------------------------------------------- /08_unicode/suits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/08_unicode/suits.c -------------------------------------------------------------------------------- /08_unicode/wide_hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/08_unicode/wide_hello.c -------------------------------------------------------------------------------- /08_unicode/wide_in.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/08_unicode/wide_in.c -------------------------------------------------------------------------------- /08_unicode/wide_in_better.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/08_unicode/wide_in_better.c -------------------------------------------------------------------------------- /08_unicode/wscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/08_unicode/wscanf.c -------------------------------------------------------------------------------- /08_unicode/yen01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/08_unicode/yen01.c -------------------------------------------------------------------------------- /08_unicode/yen02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/08_unicode/yen02.c -------------------------------------------------------------------------------- /09_hexdump/byte_sizes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/09_hexdump/byte_sizes.c -------------------------------------------------------------------------------- /09_hexdump/byte_values01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/09_hexdump/byte_values01.c -------------------------------------------------------------------------------- /09_hexdump/byte_values02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/09_hexdump/byte_values02.c -------------------------------------------------------------------------------- /09_hexdump/byte_values03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/09_hexdump/byte_values03.c -------------------------------------------------------------------------------- /09_hexdump/byte_values04.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/09_hexdump/byte_values04.c -------------------------------------------------------------------------------- /09_hexdump/byte_values05.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/09_hexdump/byte_values05.c -------------------------------------------------------------------------------- /09_hexdump/byte_values06.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/09_hexdump/byte_values06.c -------------------------------------------------------------------------------- /09_hexdump/bytes.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/09_hexdump/bytes.dat -------------------------------------------------------------------------------- /09_hexdump/dumpfile01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/09_hexdump/dumpfile01.c -------------------------------------------------------------------------------- /09_hexdump/dumpfile02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/09_hexdump/dumpfile02.c -------------------------------------------------------------------------------- /09_hexdump/dumpfile03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/09_hexdump/dumpfile03.c -------------------------------------------------------------------------------- /09_hexdump/dumpfile04.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/09_hexdump/dumpfile04.c -------------------------------------------------------------------------------- /09_hexdump/dumpfile05.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/09_hexdump/dumpfile05.c -------------------------------------------------------------------------------- /09_hexdump/dumpfile06.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/09_hexdump/dumpfile06.c -------------------------------------------------------------------------------- /09_hexdump/dumpfile07.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/09_hexdump/dumpfile07.c -------------------------------------------------------------------------------- /09_hexdump/limits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/09_hexdump/limits.c -------------------------------------------------------------------------------- /09_hexdump/options01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/09_hexdump/options01.c -------------------------------------------------------------------------------- /09_hexdump/options02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/09_hexdump/options02.c -------------------------------------------------------------------------------- /09_hexdump/options03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/09_hexdump/options03.c -------------------------------------------------------------------------------- /09_hexdump/sonnet18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/09_hexdump/sonnet18.txt -------------------------------------------------------------------------------- /10_dirtree/changecwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/10_dirtree/changecwd.c -------------------------------------------------------------------------------- /10_dirtree/dirtree01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/10_dirtree/dirtree01.c -------------------------------------------------------------------------------- /10_dirtree/dirtree02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/10_dirtree/dirtree02.c -------------------------------------------------------------------------------- /10_dirtree/dirtree03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/10_dirtree/dirtree03.c -------------------------------------------------------------------------------- /10_dirtree/dirtree04.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/10_dirtree/dirtree04.c -------------------------------------------------------------------------------- /10_dirtree/extractor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/10_dirtree/extractor.c -------------------------------------------------------------------------------- /10_dirtree/fileinfo01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/10_dirtree/fileinfo01.c -------------------------------------------------------------------------------- /10_dirtree/fileinfo02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/10_dirtree/fileinfo02.c -------------------------------------------------------------------------------- /10_dirtree/fileinfo03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/10_dirtree/fileinfo03.c -------------------------------------------------------------------------------- /10_dirtree/fileinfo04.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/10_dirtree/fileinfo04.c -------------------------------------------------------------------------------- /10_dirtree/fileinfo05.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/10_dirtree/fileinfo05.c -------------------------------------------------------------------------------- /10_dirtree/getcwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/10_dirtree/getcwd.c -------------------------------------------------------------------------------- /10_dirtree/readdir01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/10_dirtree/readdir01.c -------------------------------------------------------------------------------- /10_dirtree/readdir02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/10_dirtree/readdir02.c -------------------------------------------------------------------------------- /10_dirtree/readdir03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/10_dirtree/readdir03.c -------------------------------------------------------------------------------- /10_dirtree/readdir04.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/10_dirtree/readdir04.c -------------------------------------------------------------------------------- /10_dirtree/subdir01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/10_dirtree/subdir01.c -------------------------------------------------------------------------------- /10_dirtree/subdir02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/10_dirtree/subdir02.c -------------------------------------------------------------------------------- /10_dirtree/subdir03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/10_dirtree/subdir03.c -------------------------------------------------------------------------------- /10_dirtree/subdir04.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/10_dirtree/subdir04.c -------------------------------------------------------------------------------- /10_dirtree/subdir05.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/10_dirtree/subdir05.c -------------------------------------------------------------------------------- /10_dirtree/subdir06.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/10_dirtree/subdir06.c -------------------------------------------------------------------------------- /11_filefind/finddupe01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/11_filefind/finddupe01.c -------------------------------------------------------------------------------- /11_filefind/finddupe02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/11_filefind/finddupe02.c -------------------------------------------------------------------------------- /11_filefind/finddupe03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/11_filefind/finddupe03.c -------------------------------------------------------------------------------- /11_filefind/finddupe04.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/11_filefind/finddupe04.c -------------------------------------------------------------------------------- /11_filefind/finddupe05.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/11_filefind/finddupe05.c -------------------------------------------------------------------------------- /11_filefind/findfile01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/11_filefind/findfile01.c -------------------------------------------------------------------------------- /11_filefind/findfile02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/11_filefind/findfile02.c -------------------------------------------------------------------------------- /11_filefind/glob01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/11_filefind/glob01.c -------------------------------------------------------------------------------- /11_filefind/glob02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/11_filefind/glob02.c -------------------------------------------------------------------------------- /12_holiday/easter01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/12_holiday/easter01.c -------------------------------------------------------------------------------- /12_holiday/gauntlet01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/12_holiday/gauntlet01.c -------------------------------------------------------------------------------- /12_holiday/gauntlet02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/12_holiday/gauntlet02.c -------------------------------------------------------------------------------- /12_holiday/getdate01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/12_holiday/getdate01.c -------------------------------------------------------------------------------- /12_holiday/getdate02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/12_holiday/getdate02.c -------------------------------------------------------------------------------- /12_holiday/getdate03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/12_holiday/getdate03.c -------------------------------------------------------------------------------- /12_holiday/getdate04.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/12_holiday/getdate04.c -------------------------------------------------------------------------------- /12_holiday/isholiday01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/12_holiday/isholiday01.c -------------------------------------------------------------------------------- /12_holiday/isholiday02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/12_holiday/isholiday02.c -------------------------------------------------------------------------------- /12_holiday/isholiday03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/12_holiday/isholiday03.c -------------------------------------------------------------------------------- /12_holiday/isholiday04.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/12_holiday/isholiday04.c -------------------------------------------------------------------------------- /12_holiday/isholiday05.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/12_holiday/isholiday05.c -------------------------------------------------------------------------------- /12_holiday/isholiday06.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/12_holiday/isholiday06.c -------------------------------------------------------------------------------- /12_holiday/isholiday07.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/12_holiday/isholiday07.c -------------------------------------------------------------------------------- /12_holiday/return01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/12_holiday/return01.c -------------------------------------------------------------------------------- /12_holiday/return02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/12_holiday/return02.c -------------------------------------------------------------------------------- /12_holiday/return03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/12_holiday/return03.c -------------------------------------------------------------------------------- /13_calendar/ansi01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/13_calendar/ansi01.c -------------------------------------------------------------------------------- /13_calendar/ansi02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/13_calendar/ansi02.c -------------------------------------------------------------------------------- /13_calendar/holiday_year.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/13_calendar/holiday_year.h -------------------------------------------------------------------------------- /13_calendar/isholiday.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/13_calendar/isholiday.c -------------------------------------------------------------------------------- /13_calendar/leapyear01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/13_calendar/leapyear01.c -------------------------------------------------------------------------------- /13_calendar/month01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/13_calendar/month01.c -------------------------------------------------------------------------------- /13_calendar/month02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/13_calendar/month02.c -------------------------------------------------------------------------------- /13_calendar/month03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/13_calendar/month03.c -------------------------------------------------------------------------------- /13_calendar/month04.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/13_calendar/month04.c -------------------------------------------------------------------------------- /13_calendar/thefirst01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/13_calendar/thefirst01.c -------------------------------------------------------------------------------- /13_calendar/thefirst02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/13_calendar/thefirst02.c -------------------------------------------------------------------------------- /13_calendar/thefirst03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/13_calendar/thefirst03.c -------------------------------------------------------------------------------- /13_calendar/timezone01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/13_calendar/timezone01.c -------------------------------------------------------------------------------- /13_calendar/timezone02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/13_calendar/timezone02.c -------------------------------------------------------------------------------- /13_calendar/week01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/13_calendar/week01.c -------------------------------------------------------------------------------- /13_calendar/week02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/13_calendar/week02.c -------------------------------------------------------------------------------- /13_calendar/week03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/13_calendar/week03.c -------------------------------------------------------------------------------- /13_calendar/week04.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/13_calendar/week04.c -------------------------------------------------------------------------------- /13_calendar/weekday01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/13_calendar/weekday01.c -------------------------------------------------------------------------------- /13_calendar/weekday02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/13_calendar/weekday02.c -------------------------------------------------------------------------------- /13_calendar/weekday03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/13_calendar/weekday03.c -------------------------------------------------------------------------------- /13_calendar/year01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/13_calendar/year01.c -------------------------------------------------------------------------------- /13_calendar/year02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/13_calendar/year02.c -------------------------------------------------------------------------------- /13_calendar/year03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/13_calendar/year03.c -------------------------------------------------------------------------------- /13_calendar/year04.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/13_calendar/year04.c -------------------------------------------------------------------------------- /13_calendar/year05.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/13_calendar/year05.c -------------------------------------------------------------------------------- /13_calendar/year06.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/13_calendar/year06.c -------------------------------------------------------------------------------- /14_lotto/lotto01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/14_lotto/lotto01.c -------------------------------------------------------------------------------- /14_lotto/lotto02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/14_lotto/lotto02.c -------------------------------------------------------------------------------- /14_lotto/lotto03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/14_lotto/lotto03.c -------------------------------------------------------------------------------- /14_lotto/lotto04.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/14_lotto/lotto04.c -------------------------------------------------------------------------------- /14_lotto/lotto05.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/14_lotto/lotto05.c -------------------------------------------------------------------------------- /14_lotto/lotto06.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/14_lotto/lotto06.c -------------------------------------------------------------------------------- /14_lotto/lotto07.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/14_lotto/lotto07.c -------------------------------------------------------------------------------- /14_lotto/lotto08.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/14_lotto/lotto08.c -------------------------------------------------------------------------------- /14_lotto/lotto09.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/14_lotto/lotto09.c -------------------------------------------------------------------------------- /14_lotto/odds01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/14_lotto/odds01.c -------------------------------------------------------------------------------- /14_lotto/odds02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/14_lotto/odds02.c -------------------------------------------------------------------------------- /14_lotto/odds03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/14_lotto/odds03.c -------------------------------------------------------------------------------- /14_lotto/odds04.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/14_lotto/odds04.c -------------------------------------------------------------------------------- /14_lotto/random01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/14_lotto/random01.c -------------------------------------------------------------------------------- /14_lotto/random02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/14_lotto/random02.c -------------------------------------------------------------------------------- /14_lotto/random03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/14_lotto/random03.c -------------------------------------------------------------------------------- /15_tictactoe/ttt01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/15_tictactoe/ttt01.c -------------------------------------------------------------------------------- /15_tictactoe/ttt02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/15_tictactoe/ttt02.c -------------------------------------------------------------------------------- /15_tictactoe/ttt03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/15_tictactoe/ttt03.c -------------------------------------------------------------------------------- /15_tictactoe/ttt04.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/15_tictactoe/ttt04.c -------------------------------------------------------------------------------- /15_tictactoe/ttt05.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/15_tictactoe/ttt05.c -------------------------------------------------------------------------------- /15_tictactoe/ttt06.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/15_tictactoe/ttt06.c -------------------------------------------------------------------------------- /15_tictactoe/ttt07.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dangookin/Tiny_C_Projects/HEAD/15_tictactoe/ttt07.c --------------------------------------------------------------------------------