home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 October
/
usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso
/
misc
/
volume23
/
smiley
/
part01
/
smiley.h
< prev
Wrap
C/C++ Source or Header
|
1991-10-22
|
359b
|
26 lines
/*
* 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;