change python config, add jupyter and ein

This commit is contained in:
2024-05-05 20:36:39 +02:00
parent b18d02d8d5
commit 8b80ceda39
168 changed files with 177127 additions and 46 deletions

18
lisp/zmq/src/util.h Normal file
View File

@@ -0,0 +1,18 @@
#ifndef __UTIL_H__
#define __UTIL_H__
#include "core.h"
EZMQ_FUN(ezmq_has, emacs_value);
EZMQ_FUN(ezmq_version, void);
EZMQ_FUN(ezmq_z85_decode, emacs_value);
EZMQ_FUN(ezmq_z85_encode, emacs_value);
EZMQ_FUN(ezmq_curve_keypair, void);
EZMQ_FUN(ezmq_curve_public, emacs_value);
EZMQ_FUN(ezmq_equal, emacs_value, emacs_value);
EZMQ_FUN(ezmq_message_p, emacs_value);
EZMQ_FUN(ezmq_socket_p, emacs_value);
EZMQ_FUN(ezmq_context_p, emacs_value);
EZMQ_FUN(ezmq_poller_p, emacs_value);
#endif /* __UTIL_H__ */