├── .github └── workflows │ └── wangdoc.yml ├── .gitignore ├── README.md ├── chapters.yml ├── docs ├── array.md ├── cli.md ├── enum.md ├── file.md ├── flow-control.md ├── function.md ├── intro.md ├── io.md ├── lib │ ├── assert.h.md │ ├── ctype.h.md │ ├── errno.h.md │ ├── float.h.md │ ├── inttypes.h.md │ ├── iso646.h.md │ ├── limits.h.md │ ├── locale.h.md │ ├── math.h.md │ ├── signal.h.md │ ├── stdarg.h.md │ ├── stdbool.h.md │ ├── stddef.h.md │ ├── stdint.h.md │ ├── stdio.h.md │ ├── stdlib.h.md │ ├── string.h.md │ ├── time.h.md │ ├── wchar.h.md │ └── wctype.h.md ├── memory.md ├── multibyte.md ├── multifile.md ├── operator.md ├── pointer.md ├── preprocessor.md ├── specifier.md ├── string.md ├── struct.md ├── syntax.md ├── typedef.md ├── types.md ├── union.md └── variable.md ├── loppo.yml └── package.json /.github/workflows/wangdoc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/.github/workflows/wangdoc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | package-lock.json 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | C 语言入门教程。 2 | -------------------------------------------------------------------------------- /chapters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/chapters.yml -------------------------------------------------------------------------------- /docs/array.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/docs/array.md -------------------------------------------------------------------------------- /docs/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/docs/cli.md -------------------------------------------------------------------------------- /docs/enum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/docs/enum.md -------------------------------------------------------------------------------- /docs/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/docs/file.md -------------------------------------------------------------------------------- /docs/flow-control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/docs/flow-control.md -------------------------------------------------------------------------------- /docs/function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/docs/function.md -------------------------------------------------------------------------------- /docs/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/docs/intro.md -------------------------------------------------------------------------------- /docs/io.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/docs/io.md -------------------------------------------------------------------------------- /docs/lib/assert.h.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/docs/lib/assert.h.md -------------------------------------------------------------------------------- /docs/lib/ctype.h.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/docs/lib/ctype.h.md -------------------------------------------------------------------------------- /docs/lib/errno.h.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/docs/lib/errno.h.md -------------------------------------------------------------------------------- /docs/lib/float.h.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/docs/lib/float.h.md -------------------------------------------------------------------------------- /docs/lib/inttypes.h.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/docs/lib/inttypes.h.md -------------------------------------------------------------------------------- /docs/lib/iso646.h.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/docs/lib/iso646.h.md -------------------------------------------------------------------------------- /docs/lib/limits.h.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/docs/lib/limits.h.md -------------------------------------------------------------------------------- /docs/lib/locale.h.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/docs/lib/locale.h.md -------------------------------------------------------------------------------- /docs/lib/math.h.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/docs/lib/math.h.md -------------------------------------------------------------------------------- /docs/lib/signal.h.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/docs/lib/signal.h.md -------------------------------------------------------------------------------- /docs/lib/stdarg.h.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/docs/lib/stdarg.h.md -------------------------------------------------------------------------------- /docs/lib/stdbool.h.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/docs/lib/stdbool.h.md -------------------------------------------------------------------------------- /docs/lib/stddef.h.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/docs/lib/stddef.h.md -------------------------------------------------------------------------------- /docs/lib/stdint.h.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/docs/lib/stdint.h.md -------------------------------------------------------------------------------- /docs/lib/stdio.h.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/docs/lib/stdio.h.md -------------------------------------------------------------------------------- /docs/lib/stdlib.h.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/docs/lib/stdlib.h.md -------------------------------------------------------------------------------- /docs/lib/string.h.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/docs/lib/string.h.md -------------------------------------------------------------------------------- /docs/lib/time.h.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/docs/lib/time.h.md -------------------------------------------------------------------------------- /docs/lib/wchar.h.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/docs/lib/wchar.h.md -------------------------------------------------------------------------------- /docs/lib/wctype.h.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/docs/lib/wctype.h.md -------------------------------------------------------------------------------- /docs/memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/docs/memory.md -------------------------------------------------------------------------------- /docs/multibyte.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/docs/multibyte.md -------------------------------------------------------------------------------- /docs/multifile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/docs/multifile.md -------------------------------------------------------------------------------- /docs/operator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/docs/operator.md -------------------------------------------------------------------------------- /docs/pointer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/docs/pointer.md -------------------------------------------------------------------------------- /docs/preprocessor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/docs/preprocessor.md -------------------------------------------------------------------------------- /docs/specifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/docs/specifier.md -------------------------------------------------------------------------------- /docs/string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/docs/string.md -------------------------------------------------------------------------------- /docs/struct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/docs/struct.md -------------------------------------------------------------------------------- /docs/syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/docs/syntax.md -------------------------------------------------------------------------------- /docs/typedef.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/docs/typedef.md -------------------------------------------------------------------------------- /docs/types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/docs/types.md -------------------------------------------------------------------------------- /docs/union.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/docs/union.md -------------------------------------------------------------------------------- /docs/variable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/docs/variable.md -------------------------------------------------------------------------------- /loppo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/loppo.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangdoc/clang-tutorial/HEAD/package.json --------------------------------------------------------------------------------