readme

来自「php-4.4.7学习linux时下载的源代码」· 代码 · 共 18 行

TXT
18
字号
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 + =
减小字号Ctrl + -
显示快捷键?