0
0
mirror of https://github.com/rkd77/elinks.git synced 2025-09-21 19:46:23 -04:00
Files
elinks/src/ecmascript/quickjs/element.h
Witold Filipczyk e15d58dfd1 [quickjs] element.c
2021-10-29 22:06:39 +02:00

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