source:
CIVL/text/include/civlc.cvl@
e0b45cc
| Last change on this file since e0b45cc was c816cf9, checked in by , 12 years ago | |
|---|---|
|
|
| File size: 411 bytes | |
| Rev | Line | |
|---|---|---|
| [4208097] | 1 | /* This header file contains the core definitions of the CIVL-C language, |
| 2 | * including standard types and function prototypes. | |
| 3 | */ | |
| 4 | ||
| [06d6af3] | 5 | #ifdef __CIVLC_CIVL__ |
| [4208097] | 6 | #else |
| [06d6af3] | 7 | #define __CIVLC_CIVL__ |
| [4208097] | 8 | |
| [06d6af3] | 9 | #include <civlc.cvh> |
| [4208097] | 10 | |
| [06d6af3] | 11 | /* Completes the declaration of this type in civlc.cvh */ |
| [4208097] | 12 | struct __int_iter__ { |
| 13 | int size; | |
| 14 | int content[]; | |
| 15 | int index; //initialized as 0 | |
| 16 | }; | |
| 17 | ||
| [c816cf9] | 18 | void elaborate(int x) { |
| 19 | for(int i=0; i<x; i++); | |
| 20 | } | |
| 21 | ||
| [4208097] | 22 | #endif |
Note:
See TracBrowser
for help on using the repository browser.
