aboutsummaryrefslogtreecommitdiffstats
path: root/src/bls_if.cpp
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <herumi@nifty.com>2016-09-14 14:37:17 +0800
committerMITSUNARI Shigeo <herumi@nifty.com>2016-09-14 14:37:17 +0800
commitb68d2820825b3e90302d452fed9f28bfed9668fe (patch)
treedde435ac75fd88a492fcac3947b612627d5dc675 /src/bls_if.cpp
parent11557e8e6001d28afdca1b5aa78b075e0c8defc3 (diff)
downloaddexon-bls-b68d2820825b3e90302d452fed9f28bfed9668fe.tar
dexon-bls-b68d2820825b3e90302d452fed9f28bfed9668fe.tar.gz
dexon-bls-b68d2820825b3e90302d452fed9f28bfed9668fe.tar.bz2
dexon-bls-b68d2820825b3e90302d452fed9f28bfed9668fe.tar.lz
dexon-bls-b68d2820825b3e90302d452fed9f28bfed9668fe.tar.xz
dexon-bls-b68d2820825b3e90302d452fed9f28bfed9668fe.tar.zst
dexon-bls-b68d2820825b3e90302d452fed9f28bfed9668fe.zip
bls_if stack version
Diffstat (limited to 'src/bls_if.cpp')
-rw-r--r--src/bls_if.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/bls_if.cpp b/src/bls_if.cpp
index 7576c93..c64e868 100644
--- a/src/bls_if.cpp
+++ b/src/bls_if.cpp
@@ -57,6 +57,10 @@ void blsIdDestroy(blsId *id)
{
delete (bls::Id*)id;
}
+void blsIdPut(const blsId *id)
+{
+ std::cout << *(const bls::Id*)id << std::endl;
+}
void blsIdCopy(blsId *dst, const blsId *src)
{
*((bls::Id*)dst) = *((const bls::Id*)src);