diff options
Diffstat (limited to 'include/libecc/utils/print_fp.h')
| -rw-r--r-- | include/libecc/utils/print_fp.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/include/libecc/utils/print_fp.h b/include/libecc/utils/print_fp.h new file mode 100644 index 000000000000..0f7ee6356c56 --- /dev/null +++ b/include/libecc/utils/print_fp.h @@ -0,0 +1,28 @@ +/* + * Copyright (C) 2017 - This file is part of libecc project + * + * Authors: + * Ryad BENADJILA <ryadbenadjila@gmail.com> + * Arnaud EBALARD <arnaud.ebalard@ssi.gouv.fr> + * Jean-Pierre FLORI <jean-pierre.flori@ssi.gouv.fr> + * + * Contributors: + * Nicolas VIVET <nicolas.vivet@ssi.gouv.fr> + * Karim KHALFALLAH <karim.khalfallah@ssi.gouv.fr> + * + * This software is licensed under a dual BSD and GPL v2 license. + * See LICENSE file at the root folder of the project. + */ +#ifndef __PRINT_FP_H__ +#define __PRINT_FP_H__ + +#include <libecc/fp/fp.h> +#include <libecc/utils/print_nn.h> + +void fp_ctx_print(const char *msg, fp_ctx_src_t ctx); + +void fp_print(const char *msg, fp_src_t a); + +void fp_print_all(const char *msg, fp_src_t a); + +#endif /* __PRINT_FP_H__ */ |
