src_defaults.txt

Program defaults (defaults.h)
[NOTE: this file is not a Diff file!]

Task: providing simplified tuning options and mask the use of hardcoded values.

>>> defaults.h

--- DEFAULT_NAME_VERSION
	* the name and version of the program, will be displayed in usage information

--- DEFAULT_PROGRAM_FILENAME
	* fallback executable filename for when `argv[0]' is unavailable or unusable

--- DEFAULT_ERROR_MESSAGE
	* fallback generic error message for when a useable error message is unavailable due to sloppy coding or runtime mishap
	* continuing the above point, a user should never get this error message

--- STDIN_BUFFER_SIZE
	* sets the size of the stdin buffer

--- BUFFER_SIZE
	* sets the size of file input/output buffers

--- MAX_PATHNAME_LENGTH
	* sets the limit length of filenames/pathnames passed as arguments to main()
	* it is used in the `compute_caseX()' functions from `coreop.c' to check if filenames are the same using `strncmp()'
