├── .github └── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── discussion.md │ └── feature_request.md ├── .gitignore ├── .travis.yml ├── .travis └── push.sh ├── CODE_OF_CONDUCT.md ├── COLLABORATING.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── _config.yml ├── assets ├── logo.png └── logo │ └── 30-seconds-of-c-icon.svg ├── cli ├── cli.js ├── git.js └── server.js ├── examshell ├── 00-aff_a │ ├── aff_a.c │ └── subject.en.txt ├── 00-ft_countdown │ ├── ft_countdown.c │ └── subject.en.txt ├── 00-ft_print_numbers │ ├── ft_print_numbers.c │ └── subject.en.tx ├── 00-hello │ ├── examples.txt │ ├── hello.c │ └── subject.en.txt ├── 00-maff_alpha │ ├── examples.txt │ ├── maff_alpha.c │ └── subject.en.txt ├── 01-aff_first_param │ ├── aff_first_param.c │ ├── runtest.sh │ └── subject.en.txt ├── 01-aff_last-param │ ├── aff_last_param.c │ └── subject.en.txt ├── 01-maff_revalpha │ ├── maff_revalpha.c │ └── subject.en.txt ├── 01-only_a │ ├── only_a.c │ └── subject.en.txt ├── 01-only_z │ ├── only_z.c │ └── subject.en.txt ├── 1-0-ft_strcpy │ ├── ft_strcpy.c │ ├── main.c │ └── subject.en.txt ├── 1-0-ft_strlen │ ├── ft_strlen.c │ ├── subject.en.txt │ └── test.ft_strlen.c ├── 1-0-search_and_replace │ ├── search_and_replace.c │ └── subject.en.txt ├── 1-2-ft_putstr │ ├── ft_putstr.c │ ├── main.c │ └── subject.en.txt ├── 1-2-ft_swap │ ├── ft_swap.c │ └── subject.en.txt └── 2-0-inter │ ├── inter │ ├── inter.c │ └── subject.en.txt ├── fredsiika.png ├── glossary ├── array.md ├── c-data-types.md ├── derived-data-type.md ├── enumeration-data-type.md ├── floating-point-data-type.md ├── integer-data-type.md ├── intro-to-c.md ├── keyword_database.md ├── modifier.md ├── pointers.md ├── recursion.md ├── standard-library-functions.md └── void-data-type.md ├── gracenellore.png ├── lib ├── ._math.js ├── math.js └── snippets │ ├── ._index.js │ ├── index.js │ └── snippets.txt ├── logo.svg ├── package.json ├── sandbox ├── cards.c ├── intro.c ├── pointers.c └── test.main.c ├── scripts ├── analyze.js ├── build.js ├── glossary │ ├── keyword.js │ └── library.js ├── localize.js ├── tag.js ├── tdd.js ├── util.js └── web.js ├── simonchong.png ├── snippet-template.md ├── snippets ├── Makefile │ ├── Makefile │ ├── ft_putchar.c │ ├── ft_putstr.c │ └── main.c ├── aff_a │ ├── aff_a.c │ └── aff_a.md ├── aff_z.c ├── ft_atoi │ ├── t_atoi.c │ └── t_atoi.md ├── ft_bzero │ └── ft_bzero.c ├── ft_is_negative │ ├── ft_is_negative.c │ └── ft_is_negative.md ├── ft_print_alphabet │ ├── ft_print_alphabet.c │ └── ft_print_alphabet.md ├── ft_print_numbers │ ├── ft_print_numbers.c │ └── ft_print_numbers.md ├── ft_print_reverse_alphabet │ ├── ft_print_reverse_alphabet.c │ └── ft_print_reverse_alphabet.md ├── ft_putchar │ ├── ft_putchar.c │ └── ft_putchar.md ├── ft_putchar_fd │ └── ft_putchar_fd.c ├── ft_putnbr │ └── ft_putnbr.c ├── isalnum │ ├── isalnum.c │ └── isalnum.md ├── isalpha │ ├── isalpha.c │ └── isalpha.md ├── iscntrl │ ├── iscntrl.c │ └── iscntrl.md ├── isdigit │ ├── isdigit.c │ ├── isdigit.md │ └── logo-base64format.html ├── isgraph │ ├── isgraph.c │ └── isgraph.md └── sizeof │ ├── sizeof.c │ └── sizeof.md └── tag_database /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/discussion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/.github/ISSUE_TEMPLATE/discussion.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/.travis.yml -------------------------------------------------------------------------------- /.travis/push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/.travis/push.sh -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /COLLABORATING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/COLLABORATING.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/_config.yml -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/logo/30-seconds-of-c-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/assets/logo/30-seconds-of-c-icon.svg -------------------------------------------------------------------------------- /cli/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/cli/cli.js -------------------------------------------------------------------------------- /cli/git.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/cli/git.js -------------------------------------------------------------------------------- /cli/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/cli/server.js -------------------------------------------------------------------------------- /examshell/00-aff_a/aff_a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/examshell/00-aff_a/aff_a.c -------------------------------------------------------------------------------- /examshell/00-aff_a/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/examshell/00-aff_a/subject.en.txt -------------------------------------------------------------------------------- /examshell/00-ft_countdown/ft_countdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/examshell/00-ft_countdown/ft_countdown.c -------------------------------------------------------------------------------- /examshell/00-ft_countdown/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/examshell/00-ft_countdown/subject.en.txt -------------------------------------------------------------------------------- /examshell/00-ft_print_numbers/ft_print_numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/examshell/00-ft_print_numbers/ft_print_numbers.c -------------------------------------------------------------------------------- /examshell/00-ft_print_numbers/subject.en.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/examshell/00-ft_print_numbers/subject.en.tx -------------------------------------------------------------------------------- /examshell/00-hello/examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/examshell/00-hello/examples.txt -------------------------------------------------------------------------------- /examshell/00-hello/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/examshell/00-hello/hello.c -------------------------------------------------------------------------------- /examshell/00-hello/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/examshell/00-hello/subject.en.txt -------------------------------------------------------------------------------- /examshell/00-maff_alpha/examples.txt: -------------------------------------------------------------------------------- 1 | $> ./maff_alpha | cat -e 2 | aBcDeFgHiJkLmNoPqRsTuVwXyZ$ -------------------------------------------------------------------------------- /examshell/00-maff_alpha/maff_alpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/examshell/00-maff_alpha/maff_alpha.c -------------------------------------------------------------------------------- /examshell/00-maff_alpha/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/examshell/00-maff_alpha/subject.en.txt -------------------------------------------------------------------------------- /examshell/01-aff_first_param/aff_first_param.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/examshell/01-aff_first_param/aff_first_param.c -------------------------------------------------------------------------------- /examshell/01-aff_first_param/runtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/examshell/01-aff_first_param/runtest.sh -------------------------------------------------------------------------------- /examshell/01-aff_first_param/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/examshell/01-aff_first_param/subject.en.txt -------------------------------------------------------------------------------- /examshell/01-aff_last-param/aff_last_param.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/examshell/01-aff_last-param/aff_last_param.c -------------------------------------------------------------------------------- /examshell/01-aff_last-param/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/examshell/01-aff_last-param/subject.en.txt -------------------------------------------------------------------------------- /examshell/01-maff_revalpha/maff_revalpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/examshell/01-maff_revalpha/maff_revalpha.c -------------------------------------------------------------------------------- /examshell/01-maff_revalpha/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/examshell/01-maff_revalpha/subject.en.txt -------------------------------------------------------------------------------- /examshell/01-only_a/only_a.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main(void) 4 | { 5 | write(1, "a", 1); 6 | return(0); 7 | } 8 | 9 | -------------------------------------------------------------------------------- /examshell/01-only_a/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/examshell/01-only_a/subject.en.txt -------------------------------------------------------------------------------- /examshell/01-only_z/only_z.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main(void) 4 | { 5 | write(1, "z", 1); 6 | sreturn (0); 7 | } 8 | -------------------------------------------------------------------------------- /examshell/01-only_z/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/examshell/01-only_z/subject.en.txt -------------------------------------------------------------------------------- /examshell/1-0-ft_strcpy/ft_strcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/examshell/1-0-ft_strcpy/ft_strcpy.c -------------------------------------------------------------------------------- /examshell/1-0-ft_strcpy/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/examshell/1-0-ft_strcpy/main.c -------------------------------------------------------------------------------- /examshell/1-0-ft_strcpy/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/examshell/1-0-ft_strcpy/subject.en.txt -------------------------------------------------------------------------------- /examshell/1-0-ft_strlen/ft_strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/examshell/1-0-ft_strlen/ft_strlen.c -------------------------------------------------------------------------------- /examshell/1-0-ft_strlen/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/examshell/1-0-ft_strlen/subject.en.txt -------------------------------------------------------------------------------- /examshell/1-0-ft_strlen/test.ft_strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/examshell/1-0-ft_strlen/test.ft_strlen.c -------------------------------------------------------------------------------- /examshell/1-0-search_and_replace/search_and_replace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/examshell/1-0-search_and_replace/search_and_replace.c -------------------------------------------------------------------------------- /examshell/1-0-search_and_replace/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/examshell/1-0-search_and_replace/subject.en.txt -------------------------------------------------------------------------------- /examshell/1-2-ft_putstr/ft_putstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/examshell/1-2-ft_putstr/ft_putstr.c -------------------------------------------------------------------------------- /examshell/1-2-ft_putstr/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/examshell/1-2-ft_putstr/main.c -------------------------------------------------------------------------------- /examshell/1-2-ft_putstr/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/examshell/1-2-ft_putstr/subject.en.txt -------------------------------------------------------------------------------- /examshell/1-2-ft_swap/ft_swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/examshell/1-2-ft_swap/ft_swap.c -------------------------------------------------------------------------------- /examshell/1-2-ft_swap/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/examshell/1-2-ft_swap/subject.en.txt -------------------------------------------------------------------------------- /examshell/2-0-inter/inter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/examshell/2-0-inter/inter -------------------------------------------------------------------------------- /examshell/2-0-inter/inter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/examshell/2-0-inter/inter.c -------------------------------------------------------------------------------- /examshell/2-0-inter/subject.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/examshell/2-0-inter/subject.en.txt -------------------------------------------------------------------------------- /fredsiika.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/fredsiika.png -------------------------------------------------------------------------------- /glossary/array.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/glossary/array.md -------------------------------------------------------------------------------- /glossary/c-data-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/glossary/c-data-types.md -------------------------------------------------------------------------------- /glossary/derived-data-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/glossary/derived-data-type.md -------------------------------------------------------------------------------- /glossary/enumeration-data-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/glossary/enumeration-data-type.md -------------------------------------------------------------------------------- /glossary/floating-point-data-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/glossary/floating-point-data-type.md -------------------------------------------------------------------------------- /glossary/integer-data-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/glossary/integer-data-type.md -------------------------------------------------------------------------------- /glossary/intro-to-c.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/glossary/intro-to-c.md -------------------------------------------------------------------------------- /glossary/keyword_database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/glossary/keyword_database.md -------------------------------------------------------------------------------- /glossary/modifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/glossary/modifier.md -------------------------------------------------------------------------------- /glossary/pointers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/glossary/pointers.md -------------------------------------------------------------------------------- /glossary/recursion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/glossary/recursion.md -------------------------------------------------------------------------------- /glossary/standard-library-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/glossary/standard-library-functions.md -------------------------------------------------------------------------------- /glossary/void-data-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/glossary/void-data-type.md -------------------------------------------------------------------------------- /gracenellore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/gracenellore.png -------------------------------------------------------------------------------- /lib/._math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/lib/._math.js -------------------------------------------------------------------------------- /lib/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/lib/math.js -------------------------------------------------------------------------------- /lib/snippets/._index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/lib/snippets/._index.js -------------------------------------------------------------------------------- /lib/snippets/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/lib/snippets/index.js -------------------------------------------------------------------------------- /lib/snippets/snippets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/lib/snippets/snippets.txt -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/logo.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/package.json -------------------------------------------------------------------------------- /sandbox/cards.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/sandbox/cards.c -------------------------------------------------------------------------------- /sandbox/intro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/sandbox/intro.c -------------------------------------------------------------------------------- /sandbox/pointers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/sandbox/pointers.c -------------------------------------------------------------------------------- /sandbox/test.main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/sandbox/test.main.c -------------------------------------------------------------------------------- /scripts/analyze.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/scripts/analyze.js -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/scripts/build.js -------------------------------------------------------------------------------- /scripts/glossary/keyword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/scripts/glossary/keyword.js -------------------------------------------------------------------------------- /scripts/glossary/library.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/scripts/glossary/library.js -------------------------------------------------------------------------------- /scripts/localize.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/scripts/tag.js -------------------------------------------------------------------------------- /scripts/tdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/scripts/tdd.js -------------------------------------------------------------------------------- /scripts/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/scripts/util.js -------------------------------------------------------------------------------- /scripts/web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/scripts/web.js -------------------------------------------------------------------------------- /simonchong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/simonchong.png -------------------------------------------------------------------------------- /snippet-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/snippet-template.md -------------------------------------------------------------------------------- /snippets/Makefile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/snippets/Makefile/Makefile -------------------------------------------------------------------------------- /snippets/Makefile/ft_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/snippets/Makefile/ft_putchar.c -------------------------------------------------------------------------------- /snippets/Makefile/ft_putstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/snippets/Makefile/ft_putstr.c -------------------------------------------------------------------------------- /snippets/Makefile/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/snippets/Makefile/main.c -------------------------------------------------------------------------------- /snippets/aff_a/aff_a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/snippets/aff_a/aff_a.c -------------------------------------------------------------------------------- /snippets/aff_a/aff_a.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/snippets/aff_a/aff_a.md -------------------------------------------------------------------------------- /snippets/aff_z.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/snippets/aff_z.c -------------------------------------------------------------------------------- /snippets/ft_atoi/t_atoi.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /snippets/ft_atoi/t_atoi.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /snippets/ft_bzero/ft_bzero.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /snippets/ft_is_negative/ft_is_negative.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/snippets/ft_is_negative/ft_is_negative.c -------------------------------------------------------------------------------- /snippets/ft_is_negative/ft_is_negative.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/snippets/ft_is_negative/ft_is_negative.md -------------------------------------------------------------------------------- /snippets/ft_print_alphabet/ft_print_alphabet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/snippets/ft_print_alphabet/ft_print_alphabet.c -------------------------------------------------------------------------------- /snippets/ft_print_alphabet/ft_print_alphabet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/snippets/ft_print_alphabet/ft_print_alphabet.md -------------------------------------------------------------------------------- /snippets/ft_print_numbers/ft_print_numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/snippets/ft_print_numbers/ft_print_numbers.c -------------------------------------------------------------------------------- /snippets/ft_print_numbers/ft_print_numbers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/snippets/ft_print_numbers/ft_print_numbers.md -------------------------------------------------------------------------------- /snippets/ft_print_reverse_alphabet/ft_print_reverse_alphabet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/snippets/ft_print_reverse_alphabet/ft_print_reverse_alphabet.c -------------------------------------------------------------------------------- /snippets/ft_print_reverse_alphabet/ft_print_reverse_alphabet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/snippets/ft_print_reverse_alphabet/ft_print_reverse_alphabet.md -------------------------------------------------------------------------------- /snippets/ft_putchar/ft_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/snippets/ft_putchar/ft_putchar.c -------------------------------------------------------------------------------- /snippets/ft_putchar/ft_putchar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/snippets/ft_putchar/ft_putchar.md -------------------------------------------------------------------------------- /snippets/ft_putchar_fd/ft_putchar_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/snippets/ft_putchar_fd/ft_putchar_fd.c -------------------------------------------------------------------------------- /snippets/ft_putnbr/ft_putnbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/snippets/ft_putnbr/ft_putnbr.c -------------------------------------------------------------------------------- /snippets/isalnum/isalnum.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /snippets/isalnum/isalnum.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /snippets/isalpha/isalpha.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /snippets/isalpha/isalpha.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /snippets/iscntrl/iscntrl.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /snippets/iscntrl/iscntrl.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /snippets/isdigit/isdigit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/snippets/isdigit/isdigit.c -------------------------------------------------------------------------------- /snippets/isdigit/isdigit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/snippets/isdigit/isdigit.md -------------------------------------------------------------------------------- /snippets/isdigit/logo-base64format.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/snippets/isdigit/logo-base64format.html -------------------------------------------------------------------------------- /snippets/isgraph/isgraph.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /snippets/isgraph/isgraph.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /snippets/sizeof/sizeof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/snippets/sizeof/sizeof.c -------------------------------------------------------------------------------- /snippets/sizeof/sizeof.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredsiika/30-seconds-of-c/HEAD/snippets/sizeof/sizeof.md -------------------------------------------------------------------------------- /tag_database: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------