From 7e41976a6738db339c0962c632314f8490e626c0 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Wed, 22 Apr 2015 19:54:24 -0700 Subject: add-mpi-toradix-with-case patch * mpi/mpi.c (mp_toradix_case): New function based on mp_toradix. Takes an argument whether to use lower case digits. (mp_toradix): Reduced to wrapper for mp_toradix_case. * mpi/mpi.h (mp_toradix_case): Declared. --- mpi/mpi.h | 1 + 1 file changed, 1 insertion(+) (limited to 'mpi/mpi.h') diff --git a/mpi/mpi.h b/mpi/mpi.h index 51ffc00d..e0fdbf92 100644 --- a/mpi/mpi.h +++ b/mpi/mpi.h @@ -213,6 +213,7 @@ mp_err mp_read_radix(mp_int *mp, unsigned char *str, int radix); int mp_radix_size(mp_int *mp, int radix); int mp_value_radix_size(int num, int qty, int radix); mp_err mp_toradix(mp_int *mp, unsigned char *str, int radix); +mp_err mp_toradix_case(mp_int *mp, unsigned char *str, int radix, int low); int mp_char2value(char ch, int r); -- cgit v1.2.3