about summary refs log tree commit diff
path: root/sternenblog/stringutil.h
diff options
context:
space:
mode:
Diffstat (limited to 'sternenblog/stringutil.h')
-rw-r--r--sternenblog/stringutil.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/sternenblog/stringutil.h b/sternenblog/stringutil.h
index c7cb40d..11c678f 100644
--- a/sternenblog/stringutil.h
+++ b/sternenblog/stringutil.h
@@ -3,6 +3,9 @@
  * @brief Utilities for string construction
  */
 
+#ifndef STERNENBLOG_STRINGUTIL_H
+#define STERNENBLOG_STRINGUTIL_H
+
 /*!
  * @brief Returns hex digit for given integer
  *
@@ -25,3 +28,5 @@ char nibble_hex(short h);
  * @return pointer to concatenated strings or `NULL` on error.
  */
 char *catn_alloc(size_t n, ...);
+
+#endif