Changes between Version 2 and Version 3 of Hacking


Ignore:
Timestamp:
02/15/11 12:02:57 (13 years ago)
Author:
angel_il
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Hacking

    v2 v3  
    1919== Programming Tips == 
    2020 
     21typical structure of *.c file 
     22 
     23{{{ 
     24/*** global variables ****************************************************************************/ 
     25}}} 
     26{{{ 
     27/*** file scope macro definitions ****************************************************************/ 
     28}}} 
     29{{{ 
     30/*** file scope type declarations ****************************************************************/ 
     31}}} 
     32{{{ 
     33/*** file scope variables ************************************************************************/ 
     34}}} 
     35{{{ 
     36/*** file scope functions ************************************************************************/ 
     37/* --------------------------------------------------------------------------------------------- */ 
     38}}} 
     39{{{ 
     40/* --------------------------------------------------------------------------------------------- */ 
     41/*** public functions ****************************************************************************/ 
     42/* --------------------------------------------------------------------------------------------- */ 
     43}}} 
     44