Edit

kc3-lang/libtommath/bn_mp_error_to_string.c

Branch :

  • Show log

    Commit

  • Author : nijtmans
    Date : 2019-04-12 11:24:17
    Hash : 2b6e9d05
    Message : Change, make it a switch-statement

  • bn_mp_error_to_string.c
  • #include "tommath_private.h"
    #ifdef BN_MP_ERROR_TO_STRING_C
    /* LibTomMath, multiple-precision integer library -- Tom St Denis */
    /* SPDX-License-Identifier: Unlicense */
    
    /* return a char * string for a given code */
    const char *mp_error_to_string(int code)
    {
       switch (code) {
       case MP_OKAY:
          return "Successful";
       case MP_MEM:
          return "Out of heap";
       case MP_VAL:
          return "Value out of range";
       case MP_ITER:
          return "Max. iterations reached";
       default:
          return "Invalid error code";
       }
    }
    
    #endif