From 509e75b1d5ca29065ccf3d7510dfc09dbf6e78a7 Mon Sep 17 00:00:00 2001 From: Ramana Kumar Date: Fri, 16 Sep 2022 09:09:14 +0100 Subject: [PATCH] Add new_poly_l to interface --- src/c_kzg.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/c_kzg.h b/src/c_kzg.h index f7e9536..cf660e0 100644 --- a/src/c_kzg.h +++ b/src/c_kzg.h @@ -98,6 +98,7 @@ C_KZG_RET poly_mul(poly *out, const poly *a, const poly *b); C_KZG_RET poly_mul_(poly *out, const poly *a, const poly *b, FFTSettings *fs); C_KZG_RET new_poly_div(poly *out, const poly *dividend, const poly *divisor); C_KZG_RET new_poly(poly *out, uint64_t length); +C_KZG_RET new_poly_l(poly_l *out, uint64_t length); C_KZG_RET new_poly_with_coeffs(poly *out, const fr_t *coeffs, uint64_t length); void free_poly(poly *p); void free_poly_l(poly_l *p);