Show
Ignore:
Timestamp:
12/06/10 18:12:22 (1 year ago)
Author:
walter
Message:

update documentation

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/docsrc/declaration.dd

    r2163 r2209  
    257257-------------------- 
    258258 
    259 $(P  
    260 C-style array declarations may be used as an alternative: 
     259$(P 
     260$(V1 C-style array, function pointer and pointer to array declarations are possible as an alternative:) 
     261$(V2 C-style array, function pointer and pointer to array declarations are deprecated:) 
    261262) 
    262263 
     
    264265int x[3];      // x is an array of 3 ints 
    265266int x[3][5];       // x is an array of 3 arrays of 5 ints 
    266 -------------------- 
    267  
    268 $(P  
    269 C-style function pointer and pointer to array declarations are deprecated: 
    270 ) 
    271  
    272 -------------------- 
    273267int (*x[5])[3];    // x is an array of 5 pointers to arrays of 3 ints 
    274268int (*x)(char);    // x is a pointer to a function taking a char argument