Download of ccide-0.6.6-1-mingw.tar.gz (ccide-0.6.6-1-mingw.tar.gz ( external link: SF.net): 666,573 bytes) will begin shortly. If not so, click link on the left.

檔案信息

檔案大小
666,573 bytes
MD5
fb6ca1d9fbd344817878d1861cb29b96

專案描述


Ccide reads a source program, in one of several programming languages, expands all embedded decision tables, and generates
the new, expanded source.

Ccidew processes C language programs directly. The script, ccide, uses
ccidew and m4, to process BASIC, JAVA, CC, C++, BASH, QB, VB, and EX(euphoria), source files containing embedded decision tables.

Ccide checks all conditions once and only once, avoiding side effects.
Ccide checks tables for conflicts and other errors.

Input example:
//DECISION_TABLE:
// 1 3 2 2 | light == $$ /* 1=red, 2= yellow, 3=green. */
// N - - - | speed == STOPPED
// - - Y - | speed == SLOW
// - N - Y | speed == FAST
// ______|___________________
// X - X - | Stop();
// - - - X | SlowDown();
// - X - - | SpeedUp();
//END_TABLE: