/*
 * s m i l e y . h
 *
 * DaviD W. Sanderson
 */

/*
 * Each smiley has a face and a description.
 */

struct smiley
{
	char *face;
	char *desc;
};

/*
 * faces[] is the array of smileys, nfaces is the number of elements
 * in faces.
 *
 * Definitions for these are generated by mkfaces from faces.in.
 */

extern struct smiley	faces[];
extern int		nfaces;
