Changeset 1279 for trunk/glossary.c
- Timestamp:
- 03/18/10 15:27:22 (2 years ago)
- Files:
-
- 1 modified
-
trunk/glossary.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/glossary.c
r1278 r1279 53 53 void htmlGlossary(void) 54 54 { 55 Header_ism3(":: Glossary",0); 55 printf("Content-type: text/html\n\n"); 56 StyleSheet(); 57 printf("<title>%s Glossary Entry</title>\n",cLabel); 56 58 htmlGlossaryPage(); 57 Footer_ism3();59 exit(0); 58 60 59 61 }//void htmlGlossary(void) … … 62 64 void htmlGlossaryPage(void) 63 65 { 64 printf("<fieldset><legend><b>%s Glossary Entry</b>\n" 65 "<table>\n" 66 "<tr><td>%s</td></tr>\n" 67 "</table>\n", 66 printf("<b>%s Glossary Entry</b><br><br>\n" 67 "%s", 68 68 cLabel 69 69 ,cText
