html.h 334 B

12345678910111213141516171819
  1. #ifndef HTML_H__
  2. #define HTML_H__
  3. int spitheader(void);
  4. int spitfooter(void);
  5. int spithref(void);
  6. int spitimg(void);
  7. int spititalic(void);
  8. int spitbold(void);
  9. int spitmonospace(void);
  10. int spitlinebreak(void);
  11. int newparagraph(void);
  12. int spithorizontalrule(void);
  13. int subheading(void);
  14. int codestart(void);
  15. int codeend(void);
  16. #endif