aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2015-12-24 14:55:45 +0100
committerHarald Welte <laforge@gnumonks.org>2015-12-24 15:03:11 +0100
commitafcaac08eef333411d8241918181bb126d76d695 (patch)
tree7094ec1e37e192c89c0bbb9d8777aeaab5c14d7e /src
parentb0de90639b5fe9c62ea8165fd1c49efea2f66477 (diff)
asn1helpers.h: Add missing declarations of functions in asn1helpers.c
Diffstat (limited to 'src')
-rw-r--r--src/asn1helpers.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/asn1helpers.h b/src/asn1helpers.h
index d68743d..0d121bb 100644
--- a/src/asn1helpers.h
+++ b/src/asn1helpers.h
@@ -7,6 +7,7 @@
#include "OCTET_STRING.h"
void asn1_u32_to_bitstring(BIT_STRING_t *bitstr, uint32_t *buf, uint32_t in);
+void asn1_u28_to_bitstring(BIT_STRING_t *bitstr, uint32_t *buf, uint32_t in);
void asn1_u24_to_bitstring(BIT_STRING_t *bitstr, uint32_t *buf, uint32_t in);
int BIT_STRING_fromBuf(BIT_STRING_t *st, const uint8_t *str, unsigned int bit_len);
void asn1_u16_to_str(OCTET_STRING_t *str, uint16_t *buf, uint16_t in);
@@ -15,3 +16,5 @@ int asn1_strncpy(char *out, const OCTET_STRING_t *in, size_t n);
uint16_t asn1str_to_u16(const OCTET_STRING_t *in);
uint8_t asn1str_to_u8(const OCTET_STRING_t *in);
uint32_t asn1bitstr_to_u32(const BIT_STRING_t *in);
+uint32_t asn1bitstr_to_u28(const BIT_STRING_t *in);
+uint32_t asn1bitstr_to_u24(const BIT_STRING_t *in);