Difference between revisions of "C"

From WikEmacs
Jump to navigation Jump to search
m
Line 5: Line 5:
 
== Browsing code ==
 
== Browsing code ==
  
[http://cscope.sourceforge.net/ Cscope] is the de-facto tool for browsing C code. The package is bundled with ''xscope.el'' library which enables use of cscope from within Emacs.
+
[http://cscope.sourceforge.net/ Cscope] is the de-facto tool for browsing C code. The package is bundled with {{ModeLink|xscope}} mode which enables use of <tt>cscope</tt> from within Emacs.
  
 
== Debugging ==
 
== Debugging ==

Revision as of 15:18, 28 March 2012

C is a general-purpose computer programming language developed between 1969 and 1973 by Dennis Ritchie at the Bell Telephone Laboratories. It is one of the most widely used programming languages of all time. See Wikipedia article.

The default major mode associated with C files (.c and .h) is cc-mode.

Browsing code

Cscope is the de-facto tool for browsing C code. The package is bundled with xscope mode which enables use of cscope from within Emacs.

Debugging

gdb -- the GNU Project Debugger -- can be embedded in Emacs.

While browsing your project's code:

  • Run M-x gdb to start a new gdb session
  • Specify gdb parameters for your project.
  • A new buffer "*gud-xxx*" for the gdb session is created.