From 4b7d9fec1984e9c5896d56388d9f8d0c8e9455c8 Mon Sep 17 00:00:00 2001 From: Wei-keng Liao Date: Thu, 6 Oct 2016 00:37:58 -0500 Subject: [PATCH] add 4 new subroutines defined in ncx.m4 --- libsrc/ncx.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/libsrc/ncx.h b/libsrc/ncx.h index 37923d154..01e8433c4 100644 --- a/libsrc/ncx.h +++ b/libsrc/ncx.h @@ -269,6 +269,15 @@ ncx_put_int32(void **xpp, const int ip); extern int ncx_put_int64(void **xpp, const long long ip); +extern int +ncx_get_uint32(const void **xpp, unsigned int *ip); +extern int +ncx_get_uint64(const void **xpp, unsigned long long *ip); +extern int +ncx_put_uint32(void **xpp, const unsigned int ip); +extern int +ncx_put_uint64(void **xpp, const unsigned long long ip); + extern int ncx_get_int_int(const void *xp, int *ip); extern int ncx_put_int_int(void *xp, const int *ip);