Line
#pragma mark {any text}
None
None
None
This pragma adds an entry into the CodeWarrior IDE function list. It also helps to introduce faster code lookups by providing a menu entry which jumps directly to a code position. #pragma mark inserts a separator line.
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++; }