ckiss

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit d8454ec8719d7fa7b234c5452e82867af6a33c06
parent 6c994d5676ec3653608234fbfe1fc3934396bd1f
Author: aabacchus <ben@bvnf.space>
Date:   Sat, 22 Apr 2023 18:14:16 +0100

header guard

Diffstat:
Msrc/ckiss.h | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/src/ckiss.h b/src/ckiss.h @@ -1,3 +1,6 @@ +#ifndef _CKISS_H +#define _CKISS_H + #include <limits.h> #include <stdbool.h> #include <unistd.h> @@ -89,3 +92,5 @@ void destroy_env(struct env *e); int list(int argc, char **argv, struct env *e); int search(int argc, char **argv, struct env *e); + +#endif