11
Cで最も一般的な命名規則は何ですか?
Cで一般的に使用される命名規則は何ですか?少なくとも2つあることを知っています。 GNU / linux / lower_case_functionsを使用したK&R ?名前 ?UpperCaseFoo関数を使用 私はここでのみCについて話しています。私たちのプロジェクトのほとんどは、Cを使用する小さな組み込みシステムです。 これが私が次のプロジェクトで使用することを計画しているものです: Cの命名規則 Struct TitleCase Struct Members lower_case or lowerCase Enum ETitleCase Enum Members ALL_CAPS or lowerCase Public functions pfx_TitleCase (pfx = two or three letter module prefix) Private functions TitleCase Trivial variables i,x,n,f etc... Local variables lower_case or lowerCase Global variables …
125
c
naming-conventions