fix: Adding Header guards.

This commit is contained in:
2025-06-29 15:07:31 +02:00
parent 1aba159f8f
commit 84ba41e180
4 changed files with 75 additions and 56 deletions

View File

@@ -1,5 +1,8 @@
#include <stddef.h>
#ifndef INCLUDE_SET_UTILS_H_
#define INCLUDE_SET_UTILS_H_
/*
* Returns pointer to formatted the string.
*
@@ -52,3 +55,5 @@ void *set_calloc(size_t n, size_t size);
* See also: set_malloc()
*/
void *set_realloc(size_t n);
#endif