Programming Standards

A pointer should indicate what it points to as part of the prefix. A pointer to a null terminated string should begin with psz. Variable Names should be descriptive and each word should be capitalized. They should be prefixed with the type. (See above.) Examples: char sbPhyRecBuffer[200] // Physical Record Buffer which is a string containing ... ................
................