Questions tagged «c»

1
如何在键入时自动创建整洁的C注释块?
当您开始输入多行注释时,某些代码编辑器(例如eclipse)会自动形成整齐的块: 在emacs中也有一些软件包或其他方式可以做到这一点吗? 编辑:澄清:我不希望插入注释块的组合键。我希望在按RETafter 时自动创建一个注释框/*。


3
如何从foo.c自动在foo.h中插入原型?
假设我正在文件foo.c中编写一个C程序: int add_numbers(int x, int y, int z) { // Very complex implementation here. return x + y + z; } 我想要一个将在foo.h中插入相应函数原型的命令: int add_numbers(int x, int y, int z); 是否有任何现有的Emacs解决方案?
11 c 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.