Program flow

program flow has been kept as easy as possible with only a main loop that is repeated for each file given in the command line.

In pseudo code notation, the program flow is reduced to:

function main()
{
 print "presentation message";
 for each file specified in the command line
 {
   open file;
   parse json data from file;
   write json data to standard output;
   close file;
 }
 print "final statistics";
}


(c) 2007 Kombo Morongo.

Unless otherwise stated for scpecific contents of this site, permission is granted to copy, distribute and/or modify the contents of this site under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation. A copy of the license is included in the section entitled "GNU Free Documentation License".

Powered by Drupal - Modified by Danger4k