Codebase list dillo / f858cc64-963d-4419-90d0-c0f38b8f4d04/main src / table.hh
f858cc64-963d-4419-90d0-c0f38b8f4d04/main

Tree @f858cc64-963d-4419-90d0-c0f38b8f4d04/main (Download .tar.gz)

table.hh @f858cc64-963d-4419-90d0-c0f38b8f4d04/mainraw · history · blame

#ifndef __TABLE_HH__
#define __TABLE_HH__

/*
 * Classes
 */

class DilloHtml;

/*
 * Table parsing functions
 */

void Html_tag_open_table(DilloHtml *html, const char *tag, int tagsize);
void Html_tag_content_table(DilloHtml *html, const char *tag, int tagsize);
void Html_tag_open_tr(DilloHtml *html, const char *tag, int tagsize);
void Html_tag_content_tr(DilloHtml *html, const char *tag, int tagsize);
void Html_tag_open_td(DilloHtml *html, const char *tag, int tagsize);
void Html_tag_content_td(DilloHtml *html, const char *tag, int tagsize);
void Html_tag_open_th(DilloHtml *html, const char *tag, int tagsize);
void Html_tag_content_th(DilloHtml *html, const char *tag, int tagsize);

#endif /* __TABLE_HH__ */