From d271cce8d49673a77962ecb722aadfa91d9e7cc0 Mon Sep 17 00:00:00 2001 From: INNA Date: Thu, 8 Feb 2024 20:23:44 +0100 Subject: [PATCH] =?UTF-8?q?refactoring:=20Einheitliche=20Namensanpassung?= =?UTF-8?q?=20der=20Bin=C3=A4rfunktion=20f=C3=BCr=20int=20wie=20aus=20Head?= =?UTF-8?q?er-File?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/decbinary.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/decbinary.c b/src/decbinary.c index 1f1d951..fcf1b3b 100644 --- a/src/decbinary.c +++ b/src/decbinary.c @@ -1,7 +1,7 @@ #include #include "decbinary.h" -int dezimal_zu_binär(int dezimalzahl) { +int decimal_to_binary(int dezimalzahl) { int binärzahl[32]; @@ -13,4 +13,5 @@ int dezimal_zu_binär(int dezimalzahl) { } return i; -} \ No newline at end of file +} +