About Cacher
Web App
Download
Sign In
Sign Up
menu
Cacher is the code snippet organizer for pro developers
We empower you and your team to get more done, faster
Learn More
Akagi201
12/9/2014 - 6:39 AM
share
Share
add_circle_outline
Save
c-code-standards.md
c-code-standards.md
content_copy
file_download
Rendered
Source
文件结构组织
使用clib模块写法.
命名
模块对外的接口函数使用模块名作为前缀, 如:
conf_init()
,
confi_read()
.
源文件
系统头文件
自定义头文件
常量宏定义
const常量
结构体
外部变量声明
外部函数声明
函数实现, 按照执行堆栈排序, 由下向上执行,
main()
函数在文件末尾
Refs
C++ naming convention:
http://www.stroustrup.com/glossary.html
clear