mirror of
https://github.com/lightpanda-io/browser.git
synced 2025-10-29 15:13:28 +00:00
10 lines
226 B
C
10 lines
226 B
C
#ifndef wrapper_dom_h_
|
|
#define wrapper_dom_h_
|
|
|
|
#include <dom/dom.h>
|
|
|
|
dom_document *wr_create_doc_dom_from_string(const char *html);
|
|
dom_document *wr_create_doc_dom_from_file(const char *filename);
|
|
|
|
#endif /* wrapper_dom_h_ */
|