1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-01-03 14:57:44 -05:00
elinks/src/ecmascript/quickjs/element.h

12 lines
299 B
C
Raw Normal View History

2021-10-29 16:06:39 -04:00
#ifndef EL__ECMASCRIPT_QUICKJS_ELEMENT_H
#define EL__ECMASCRIPT_QUICKJS_ELEMENT_H
#include <quickjs/quickjs.h>
2022-01-30 05:09:56 -05:00
JSValue getElement(JSContext *ctx, void *node);
2021-10-29 16:06:39 -04:00
int js_element_init(JSContext *ctx);
2021-10-29 16:06:39 -04:00
void walk_tree(struct string *buf, void *nod, bool start = true, bool toSortAttrs = false);
#endif