Line
#pragma mark {any text - no quote marks needed}
None
None
None
This pragma adds an entry into the function list of the CodeWarrior IDE. It also helps to introduce faster code lookups by providing a menu entry which directly jumps to a code position. With the special #pragma mark -, a separator line is inserted.
For the example in the following listing the pragma accesses declarations and definitions.
#pragma mark local function declarations static void inc_counter(void); static void inc_ref(void); #pragma mark local variable definitions static int counter; static int ref; #pragma mark - static void inc_counter(void) { counter++; } static void inc_ref(void) { ref++; }