├── .gitignore ├── Makefile ├── README.md ├── SUMMARY.md ├── book.json ├── cover.jpg ├── cover.xcf.bz2 ├── cover_small.jpg ├── doc ├── BUILD.md ├── COVER.md ├── PLUGINS.md └── README.md ├── pic ├── c_dev_procedure.jpg ├── c_translation_overview.jpg ├── cover.png ├── tinylab-shop.jpg ├── tinylab-sina.jpg ├── tinylab-sponsor-1.68.jpg ├── tinylab-sponsor-3.69.jpg ├── tinylab-sponsor-6.88.jpg ├── tinylab-sponsor-8.99.jpg ├── tinylab-sponsor-9.68.jpg ├── tinylab-sponsor.jpg ├── tinylab-weixin.jpg ├── vim_basic_usage.jpg └── vim_keyboard_maps.png ├── tools ├── .vim.format.rc ├── build-toc.sh ├── convert2gitbook.sh └── h2m └── zh ├── chapters ├── 02-chapter1.markdown ├── 02-chapter2.markdown ├── 02-chapter3.markdown ├── 02-chapter4.markdown ├── 02-chapter5.markdown ├── 02-chapter6.markdown ├── 02-chapter7.markdown ├── 02-chapter8.markdown ├── 02-chapter9.markdown └── pic │ ├── c_translation_overview.jpg │ ├── vim_basic_usage.jpg │ └── vim_keyboard_maps.png └── preface ├── 01-chapter0.markdown ├── 01-chapter1.markdown └── pic └── c_dev_procedure.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/book.json -------------------------------------------------------------------------------- /cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/cover.jpg -------------------------------------------------------------------------------- /cover.xcf.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/cover.xcf.bz2 -------------------------------------------------------------------------------- /cover_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/cover_small.jpg -------------------------------------------------------------------------------- /doc/BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/doc/BUILD.md -------------------------------------------------------------------------------- /doc/COVER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/doc/COVER.md -------------------------------------------------------------------------------- /doc/PLUGINS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/doc/PLUGINS.md -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/doc/README.md -------------------------------------------------------------------------------- /pic/c_dev_procedure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/pic/c_dev_procedure.jpg -------------------------------------------------------------------------------- /pic/c_translation_overview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/pic/c_translation_overview.jpg -------------------------------------------------------------------------------- /pic/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/pic/cover.png -------------------------------------------------------------------------------- /pic/tinylab-shop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/pic/tinylab-shop.jpg -------------------------------------------------------------------------------- /pic/tinylab-sina.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/pic/tinylab-sina.jpg -------------------------------------------------------------------------------- /pic/tinylab-sponsor-1.68.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/pic/tinylab-sponsor-1.68.jpg -------------------------------------------------------------------------------- /pic/tinylab-sponsor-3.69.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/pic/tinylab-sponsor-3.69.jpg -------------------------------------------------------------------------------- /pic/tinylab-sponsor-6.88.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/pic/tinylab-sponsor-6.88.jpg -------------------------------------------------------------------------------- /pic/tinylab-sponsor-8.99.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/pic/tinylab-sponsor-8.99.jpg -------------------------------------------------------------------------------- /pic/tinylab-sponsor-9.68.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/pic/tinylab-sponsor-9.68.jpg -------------------------------------------------------------------------------- /pic/tinylab-sponsor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/pic/tinylab-sponsor.jpg -------------------------------------------------------------------------------- /pic/tinylab-weixin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/pic/tinylab-weixin.jpg -------------------------------------------------------------------------------- /pic/vim_basic_usage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/pic/vim_basic_usage.jpg -------------------------------------------------------------------------------- /pic/vim_keyboard_maps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/pic/vim_keyboard_maps.png -------------------------------------------------------------------------------- /tools/.vim.format.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/tools/.vim.format.rc -------------------------------------------------------------------------------- /tools/build-toc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/tools/build-toc.sh -------------------------------------------------------------------------------- /tools/convert2gitbook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/tools/convert2gitbook.sh -------------------------------------------------------------------------------- /tools/h2m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/tools/h2m -------------------------------------------------------------------------------- /zh/chapters/02-chapter1.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/zh/chapters/02-chapter1.markdown -------------------------------------------------------------------------------- /zh/chapters/02-chapter2.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/zh/chapters/02-chapter2.markdown -------------------------------------------------------------------------------- /zh/chapters/02-chapter3.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/zh/chapters/02-chapter3.markdown -------------------------------------------------------------------------------- /zh/chapters/02-chapter4.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/zh/chapters/02-chapter4.markdown -------------------------------------------------------------------------------- /zh/chapters/02-chapter5.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/zh/chapters/02-chapter5.markdown -------------------------------------------------------------------------------- /zh/chapters/02-chapter6.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/zh/chapters/02-chapter6.markdown -------------------------------------------------------------------------------- /zh/chapters/02-chapter7.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/zh/chapters/02-chapter7.markdown -------------------------------------------------------------------------------- /zh/chapters/02-chapter8.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/zh/chapters/02-chapter8.markdown -------------------------------------------------------------------------------- /zh/chapters/02-chapter9.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/zh/chapters/02-chapter9.markdown -------------------------------------------------------------------------------- /zh/chapters/pic/c_translation_overview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/zh/chapters/pic/c_translation_overview.jpg -------------------------------------------------------------------------------- /zh/chapters/pic/vim_basic_usage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/zh/chapters/pic/vim_basic_usage.jpg -------------------------------------------------------------------------------- /zh/chapters/pic/vim_keyboard_maps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/zh/chapters/pic/vim_keyboard_maps.png -------------------------------------------------------------------------------- /zh/preface/01-chapter0.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/zh/preface/01-chapter0.markdown -------------------------------------------------------------------------------- /zh/preface/01-chapter1.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/zh/preface/01-chapter1.markdown -------------------------------------------------------------------------------- /zh/preface/pic/c_dev_procedure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jserv/open-c-book/HEAD/zh/preface/pic/c_dev_procedure.jpg --------------------------------------------------------------------------------