home *** CD-ROM | disk | FTP | other *** search
/ ftp.parl.clemson.edu / 2015-02-07.ftp.parl.clemson.edu.tar / ftp.parl.clemson.edu / pub / coven / coven-utils-1.1.tgz / coven-utils-1.1.tar / utils / coven-module-parser / syntax.txt < prev   
Text File  |  2003-01-23  |  489b  |  22 lines

  1. ...
  2. ...
  3. Coven_Module module_name
  4.   (
  5.    static? direction buffer? type varname
  6.    direction can be: const, input, output, inout
  7.    type can be: int, unsigned int, char, unsigned char, short, unsigned short,
  8.      float, double, buffer
  9.    examples:
  10.      const int a,
  11.      const unsigned int b,
  12.      const float c,
  13.      input buffer struct foo bar,
  14.      inout buffer struct yogi bear[whatever*something],
  15.      inout buffer struct booboo bear[hello[10]*100],
  16.      input int d,
  17.   )
  18. {
  19. ...
  20. ...
  21. }
  22.