A simple C code program to demonstrates the use of the four message catalog
routines.  Simply type "make" to compile the software and the message catalog.
You must have installed the gencat software beforehand for the software to
compile the message catalog.

After compilation, typing "foo" will result in the binary printing out the
default messages stored within itself.  This is because it cannot find
the location for the message catalog.  To get it to access the message
catalog, you need to correctly specify the NLSPATH environment variable.
This specifies the directories the operating system searches to find the
message catalogs requested by the software.

	In csh: (tcsh)
	% setenv NLSPATH `pwd`/%N

	In sh: (bash)
	% export NLSPATH=`pwd`/%N

The software will now access the messages stored within the foo.cat message
catalog.

Patrick D'Cruze (pdcruze@orac.iinet.com.au)
