home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / s / smiley40.zip / SMILEY.H < prev   
C/C++ Source or Header  |  1993-01-17  |  384b  |  26 lines

  1. /*
  2.  * s m i l e y . h
  3.  *
  4.  * DaviD W. Sanderson
  5.  */
  6.  
  7. /*
  8.  * Each smiley has a face and a description.
  9.  */
  10.  
  11. struct smiley
  12. {
  13.     char *face;
  14.     char *desc;
  15. };
  16.  
  17. /*
  18.  * faces[] is the array of smileys, nfaces is the number of elements
  19.  * in faces.
  20.  *
  21.  * Definitions for these are generated by mkfaces from faces.in.
  22.  */
  23.  
  24. extern struct smiley    faces[];
  25. extern int        nfaces;
  26.