Télécharger des ccide-0.0.2-0.i386.rpm (ccide-0.0.2-0.i386.rpm ( lien externe: SourceForge.net): 29,649 octets) va bientôt commencer. Sinon, cliquez sur ccide-0.0.2-0.i386.rpm ( lien externe: SourceForge.net).

Informations sur le fichier

Taille du fichier
29,649 octets
MD5
116027e8b82f0b2668851a320a7062c8

Description du projet


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: