contributing

来自「编译后直接运行的MP3播放器全部C语言源代码 一个包含FAT文件系统、系统」· 代码 · 共 57 行

TXT
57
字号
$Id: CONTRIBUTING,v 1.5 2003/07/24 11:46:51 bagder Exp $               __________               __   ___.     Open      \______   \ ____   ____ |  | _\_ |__   _______  ___     Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /     Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <     Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \                       \/            \/     \/    \/            \/                                 Contribution PoliciesIn order for the project to run as smoothly as possible, it's best if allcontributors adhere to a few simple conventions:Language--------Write all code in C. Sometimes assembly is faster, but C is always morereadable and maintainable.Language features-----------------Write normal C code. Don't redefine the language. No new types (structs arestructs, not typedefs), no C++isms or Javaisms. Also, avoid using "const".Names-----Variables and function names should be all lower case.Preprocessor symbols should be all uppercase.Comments--------We only use plain old /* C standard comments */.Style-----When changing code, follow the code style of the file you are editing.When writing new files, you may use the brace placement style of your choice.Always indent your code with four spaces. Don't use TAB characters, as thatwill mess up code display in CVS, printing, and a zillion other places.Keep lines below 80 columns length. Use whitespace and newlines to make thecode easy to browse/read.Text format-----------Use "unix style" line feeds: "LF" only. Do not use "CR+LF".Patches-------Create a patch using 'cvs diff -ub'. Trim your patches so they only contain relevant changes.Submit your patch to the project via Sourceforge's patch tracker:http://sourceforge.net/tracker/?group_id=44306&atid=439120

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?