1.23
2.0
main
test-branch
|
Last change
on this file since ca5efc4 was 4208097, checked in by Manchun Zheng <zmanchun@…>, 12 years ago |
|
Added separated libraries for civl (including civl implementation and library enabler/evaluator/executor); modified the examples in example/library/civlc accordingly;
git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@1326 fb995dde-84ed-4084-dfe6-e5aef3e2452c
|
-
Property mode
set to
100644
|
|
File size:
362 bytes
|
| Line | |
|---|
| 1 | /* This header file contains the core definitions of the CIVL-C language,
|
|---|
| 2 | * including standard types and function prototypes.
|
|---|
| 3 | */
|
|---|
| 4 |
|
|---|
| 5 | #ifdef __CIVLC__
|
|---|
| 6 | #else
|
|---|
| 7 | #define __CIVLC__
|
|---|
| 8 |
|
|---|
| 9 | #include <civlc-common.cvh>
|
|---|
| 10 |
|
|---|
| 11 | /* Completes the declaration of this type in civlc-common.cvh */
|
|---|
| 12 | struct __int_iter__ {
|
|---|
| 13 | int size;
|
|---|
| 14 | int content[];
|
|---|
| 15 | int index; //initialized as 0
|
|---|
| 16 | };
|
|---|
| 17 |
|
|---|
| 18 | #endif
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.