From 48a934bb57524c589bfe69653058cca8e3be0a96 Mon Sep 17 00:00:00 2001 From: Julian Weigt Date: Wed, 7 Jan 2026 20:03:55 +0000 Subject: Give int conversion functions better names. --- ratio.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ratio.h') diff --git a/ratio.h b/ratio.h index cd50c8e..1f54781 100644 --- a/ratio.h +++ b/ratio.h @@ -4,9 +4,9 @@ typedef struct {bool s; unsigned long long n; unsigned long long d;} rational; -rational convert_int(int); +rational int_to_valuetype(int); -unsigned int to_exptype(unsigned int); +unsigned int int_to_exptype(unsigned int); bool is_greater(rational,rational); -- cgit v1.2.3