Change to file naming convention
Up to now I have been trying to decide the best way to name the various modules that comprise MSB. While the original code generally used the first character or two as to what part of the system the ‘C’ module played in the system, it has been a bit hard to always figure out where what in.
I have tried a few combinations on file naming for the modules we have written so far, but in general I have not been happy with the results. I think I have decided to change the module names to the form:
xx_yyyy.c
Where ‘xx’ will indicate the section of the system the module relates to such as:
- nf - Numeric function
- sf - String function
- nv - Numeric variable
- sv - String variable
- io - Generic IO
This is only a partial list. As we go forward we will see what other breakdowns we require to ultimately come up with a complete list of module sections.
