mirror of
https://github.com/rkd77/elinks.git
synced 2025-09-21 19:46:23 -04:00
11 lines
262 B
C
11 lines
262 B
C
#ifndef EL__ECMASCRIPT_QUICKJS_ELEMENT_H
|
|
#define EL__ECMASCRIPT_QUICKJS_ELEMENT_H
|
|
|
|
#include <quickjs/quickjs.h>
|
|
|
|
JSValue getElement(JSContext *ctx, void *node);
|
|
|
|
void walk_tree(struct string *buf, void *nod, bool start = true, bool toSortAttrs = false);
|
|
|
|
#endif
|