From 4c90d1d9e4092f9ee0106d316829144653a276ea Mon Sep 17 00:00:00 2001 From: Filip Wandzio Date: Tue, 30 Dec 2025 02:45:11 +0100 Subject: Split monolithic dwm.h into modular headers and group them by it's functionalities The new plan of refactoring this project is to split entire monolithic codebase into separate, (kind of) independent modules. This will help with understanding the code by turning off modules and deciding which ones require some work. Signed-off-by: Filip Wandzio --- src/util/util.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/util/util.h') diff --git a/src/util/util.h b/src/util/util.h index 6ef3c86..2c2f773 100644 --- a/src/util/util.h +++ b/src/util/util.h @@ -35,7 +35,7 @@ * Usage: * die("Error occurred in function %s", __func__); */ -void die(const char *fmt, ...); +void die(const char *format_string, ...); /* * ecalloc() @@ -56,4 +56,4 @@ void die(const char *fmt, ...); * int *arr = ecalloc(10, sizeof(int)); // Allocate memory for an array of 10 * integers. */ -void *ecalloc(size_t nmemb, size_t size); +void *ecalloc(size_t num_elements, size_t element_size); -- cgit v1.2.3