What methods are there to modularize C code?

后端 未结 8 1791
我在风中等你
我在风中等你 2021-02-05 15:48

What methods, practices and conventions do you know of to modularize C code as a project grows in size?

8条回答
  •  自闭症患者
    2021-02-05 16:08

    There are directories and files, but no namespaces or encapsulation. You can compile each module to a separate obj file, and link them together (as libraries).

提交回复
热议问题