mirror of
https://forge.fsky.io/lda/Parsee.git
synced 2026-03-13 13:45:10 +00:00
This is still unstable(and I still need to design/document the exposed API)! Do(n't) go and use it!
34 lines
431 B
C
34 lines
431 B
C
#ifdef JANET
|
|
|
|
#include <janet.h>
|
|
|
|
#define Bind(name) Janet Janet##name(int32_t argc, Janet *argv)
|
|
|
|
|
|
Bind(Milliseconds);
|
|
Bind(CytoVersion);
|
|
|
|
Bind(WriteStanza);
|
|
|
|
Bind(CreateXMLData);
|
|
Bind(CreateXMLTag);
|
|
Bind(SetXMLAttr);
|
|
|
|
Bind(ParseJSON);
|
|
|
|
Bind(MatrixInvite);
|
|
Bind(MatrixFind);
|
|
Bind(MatrixSend);
|
|
|
|
Bind(StanzaInfo);
|
|
Bind(GetKey);
|
|
Bind(SetKey);
|
|
|
|
Bind(DbLock);
|
|
Bind(DbCreate);
|
|
Bind(DbList);
|
|
Bind(DbExists);
|
|
|
|
Bind(HttpRequest);
|
|
|
|
#endif
|