use enum instead of int

This commit is contained in:
Christian Grothoff 2020-08-29 11:55:40 +02:00
parent 3bba677f64
commit 2aca3b5eff
No known key found for this signature in database
GPG Key ID: 939E6BE1E29FC3CC
2 changed files with 18 additions and 18 deletions

View File

@ -123,7 +123,7 @@ struct TALER_Amount
* @return #GNUNET_OK if the string is a valid monetary amount specification, * @return #GNUNET_OK if the string is a valid monetary amount specification,
* #GNUNET_SYSERR if it is invalid. * #GNUNET_SYSERR if it is invalid.
*/ */
int enum GNUNET_GenericReturnValue
TALER_string_to_amount (const char *str, TALER_string_to_amount (const char *str,
struct TALER_Amount *amount); struct TALER_Amount *amount);
@ -137,7 +137,7 @@ TALER_string_to_amount (const char *str,
* @return #GNUNET_OK if the string is a valid amount specification, * @return #GNUNET_OK if the string is a valid amount specification,
* #GNUNET_SYSERR if it is invalid. * #GNUNET_SYSERR if it is invalid.
*/ */
int enum GNUNET_GenericReturnValue
TALER_string_to_amount_nbo (const char *str, TALER_string_to_amount_nbo (const char *str,
struct TALER_AmountNBO *amount_nbo); struct TALER_AmountNBO *amount_nbo);
@ -150,7 +150,7 @@ TALER_string_to_amount_nbo (const char *str,
* @return #GNUNET_OK if @a cur is a valid currency specification, * @return #GNUNET_OK if @a cur is a valid currency specification,
* #GNUNET_SYSERR if it is invalid. * #GNUNET_SYSERR if it is invalid.
*/ */
int enum GNUNET_GenericReturnValue
TALER_amount_get_zero (const char *cur, TALER_amount_get_zero (const char *cur,
struct TALER_Amount *amount); struct TALER_Amount *amount);
@ -161,7 +161,7 @@ TALER_amount_get_zero (const char *cur,
* @param amount amount to check * @param amount amount to check
* @return #GNUNET_OK if @a amount is valid * @return #GNUNET_OK if @a amount is valid
*/ */
int enum GNUNET_GenericReturnValue
TALER_amount_is_valid (const struct TALER_Amount *amount); TALER_amount_is_valid (const struct TALER_Amount *amount);
@ -232,7 +232,7 @@ TALER_amount_cmp_nbo (const struct TALER_AmountNBO *a1,
* #GNUNET_NO if the currencies are different * #GNUNET_NO if the currencies are different
* #GNUNET_SYSERR if either amount is invalid * #GNUNET_SYSERR if either amount is invalid
*/ */
int enum GNUNET_GenericReturnValue
TALER_amount_cmp_currency (const struct TALER_Amount *a1, TALER_amount_cmp_currency (const struct TALER_Amount *a1,
const struct TALER_Amount *a2); const struct TALER_Amount *a2);
@ -246,7 +246,7 @@ TALER_amount_cmp_currency (const struct TALER_Amount *a1,
* #GNUNET_NO if the currencies are different * #GNUNET_NO if the currencies are different
* #GNUNET_SYSERR if either amount is invalid * #GNUNET_SYSERR if either amount is invalid
*/ */
int enum GNUNET_GenericReturnValue
TALER_amount_cmp_currency_nbo (const struct TALER_AmountNBO *a1, TALER_amount_cmp_currency_nbo (const struct TALER_AmountNBO *a1,
const struct TALER_AmountNBO *a2); const struct TALER_AmountNBO *a2);
@ -379,7 +379,7 @@ TALER_amount2s (const struct TALER_Amount *amount);
* @return #GNUNET_OK on success, #GNUNET_NO if rounding was unnecessary, * @return #GNUNET_OK on success, #GNUNET_NO if rounding was unnecessary,
* #GNUNET_SYSERR if the amount or currency or @a round_unit was invalid * #GNUNET_SYSERR if the amount or currency or @a round_unit was invalid
*/ */
int enum GNUNET_GenericReturnValue
TALER_amount_round_down (struct TALER_Amount *amount, TALER_amount_round_down (struct TALER_Amount *amount,
const struct TALER_Amount *round_unit); const struct TALER_Amount *round_unit);

View File

@ -52,7 +52,7 @@ invalidate (struct TALER_Amount *a)
* @return #GNUNET_OK if the string is a valid monetary amount specification, * @return #GNUNET_OK if the string is a valid monetary amount specification,
* #GNUNET_SYSERR if it is invalid. * #GNUNET_SYSERR if it is invalid.
*/ */
int enum GNUNET_GenericReturnValue
TALER_string_to_amount (const char *str, TALER_string_to_amount (const char *str,
struct TALER_Amount *amount) struct TALER_Amount *amount)
{ {
@ -191,7 +191,7 @@ TALER_string_to_amount (const char *str,
* @return #GNUNET_OK if the string is a valid amount specification, * @return #GNUNET_OK if the string is a valid amount specification,
* #GNUNET_SYSERR if it is invalid. * #GNUNET_SYSERR if it is invalid.
*/ */
int enum GNUNET_GenericReturnValue
TALER_string_to_amount_nbo (const char *str, TALER_string_to_amount_nbo (const char *str,
struct TALER_AmountNBO *amount_nbo) struct TALER_AmountNBO *amount_nbo)
{ {
@ -255,7 +255,7 @@ TALER_amount_ntoh (struct TALER_Amount *res,
* @return #GNUNET_OK if @a cur is a valid currency specification, * @return #GNUNET_OK if @a cur is a valid currency specification,
* #GNUNET_SYSERR if it is invalid. * #GNUNET_SYSERR if it is invalid.
*/ */
int enum GNUNET_GenericReturnValue
TALER_amount_get_zero (const char *cur, TALER_amount_get_zero (const char *cur,
struct TALER_Amount *amount) struct TALER_Amount *amount)
{ {
@ -280,10 +280,10 @@ TALER_amount_get_zero (const char *cur,
* @param amount amount to check * @param amount amount to check
* @return #GNUNET_OK if @a amount is valid * @return #GNUNET_OK if @a amount is valid
*/ */
int enum GNUNET_GenericReturnValue
TALER_amount_is_valid (const struct TALER_Amount *amount) TALER_amount_is_valid (const struct TALER_Amount *amount)
{ {
return ('\0' != amount->currency[0]); return ('\0' != amount->currency[0]) ? GNUNET_OK : GNUNET_NO;
} }
@ -294,10 +294,10 @@ TALER_amount_is_valid (const struct TALER_Amount *amount)
* @return #GNUNET_YES if valid, * @return #GNUNET_YES if valid,
* #GNUNET_NO if invalid * #GNUNET_NO if invalid
*/ */
static int static enum GNUNET_GenericReturnValue
test_valid_nbo (const struct TALER_AmountNBO *a) test_valid_nbo (const struct TALER_AmountNBO *a)
{ {
return ('\0' != a->currency[0]); return ('\0' != a->currency[0]) ? GNUNET_YES : GNUNET_NO;
} }
@ -310,7 +310,7 @@ test_valid_nbo (const struct TALER_AmountNBO *a)
* #GNUNET_NO if the currencies are different, * #GNUNET_NO if the currencies are different,
* #GNUNET_SYSERR if either amount is invalid * #GNUNET_SYSERR if either amount is invalid
*/ */
int enum GNUNET_GenericReturnValue
TALER_amount_cmp_currency (const struct TALER_Amount *a1, TALER_amount_cmp_currency (const struct TALER_Amount *a1,
const struct TALER_Amount *a2) const struct TALER_Amount *a2)
{ {
@ -333,7 +333,7 @@ TALER_amount_cmp_currency (const struct TALER_Amount *a1,
* #GNUNET_NO if the currencies are different, * #GNUNET_NO if the currencies are different,
* #GNUNET_SYSERR if either amount is invalid * #GNUNET_SYSERR if either amount is invalid
*/ */
int enum GNUNET_GenericReturnValue
TALER_amount_cmp_currency_nbo (const struct TALER_AmountNBO *a1, TALER_amount_cmp_currency_nbo (const struct TALER_AmountNBO *a1,
const struct TALER_AmountNBO *a2) const struct TALER_AmountNBO *a2)
{ {
@ -556,7 +556,7 @@ TALER_amount_add (struct TALER_Amount *sum,
* #GNUNET_NO if value was already normalized * #GNUNET_NO if value was already normalized
* #GNUNET_SYSERR if value was invalid or could not be normalized * #GNUNET_SYSERR if value was invalid or could not be normalized
*/ */
int enum GNUNET_GenericReturnValue
TALER_amount_normalize (struct TALER_Amount *amount) TALER_amount_normalize (struct TALER_Amount *amount)
{ {
uint32_t overflow; uint32_t overflow;
@ -732,7 +732,7 @@ TALER_amount_divide (struct TALER_Amount *result,
* @return #GNUNET_OK on success, #GNUNET_NO if rounding was unnecessary, * @return #GNUNET_OK on success, #GNUNET_NO if rounding was unnecessary,
* #GNUNET_SYSERR if the amount or currency or @a round_unit was invalid * #GNUNET_SYSERR if the amount or currency or @a round_unit was invalid
*/ */
int enum GNUNET_GenericReturnValue
TALER_amount_round_down (struct TALER_Amount *amount, TALER_amount_round_down (struct TALER_Amount *amount,
const struct TALER_Amount *round_unit) const struct TALER_Amount *round_unit)
{ {