1.23
2.0
acw/focus-triggers
main
test-branch
| Line | |
|---|
| 1 | /* This header file contains the core definitions of the CIVL-C language,
|
|---|
| 2 | * including standard types and function prototypes.
|
|---|
| 3 | */
|
|---|
| 4 |
|
|---|
| 5 | #ifndef __CIVLC_CIVL__
|
|---|
| 6 | #define __CIVLC_CIVL__
|
|---|
| 7 |
|
|---|
| 8 | #include <civlc.cvh>
|
|---|
| 9 |
|
|---|
| 10 | /* Completes the declaration of this type in civlc.cvh */
|
|---|
| 11 | struct $int_iter {
|
|---|
| 12 | int size;
|
|---|
| 13 | int content[];
|
|---|
| 14 | int index; //initialized as 0
|
|---|
| 15 | };
|
|---|
| 16 |
|
|---|
| 17 | void $elaborate(int x) {
|
|---|
| 18 | for(int i=0; i<x; i++);
|
|---|
| 19 | }
|
|---|
| 20 |
|
|---|
| 21 | #endif
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.