📄 readme
字号:
organization of this directory is moving towards this approach:<module>.h -- public API and data types<module>_private.h -- protected API and data types<module>.c -- implementation and private API / typesThe rules are:.c files may include *_private.h..h files may not include *_private.hThis allows us to have a nicely encapsulated C api with opaque data types and private functionsthat are nonetheless shared between source files without redundant extern declarations..
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -