This example C code demonstrates the use of descriptive names to refer to
messages and message sets.  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 "bar" 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 bar.cat message
catalog.

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