diff options
author | 2023-05-10 12:11:05 +0200 | |
---|---|---|
committer | 2023-05-10 12:11:05 +0200 | |
commit | 8a0ecaab5582fbc54abd7efa84abb896cc295c10 (patch) | |
tree | 1d9ec290ea81a1e27869bb580a1cfd317d76e8be /src/utils.h | |
parent | 95eeaa9f9c5ce5cacb566a9f47853fff324a5b10 (diff) | |
download | utils-8a0ecaab5582fbc54abd7efa84abb896cc295c10.tar.gz utils-8a0ecaab5582fbc54abd7efa84abb896cc295c10.zip |
Remove version.h
Diffstat (limited to 'src/utils.h')
-rw-r--r-- | src/utils.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils.h b/src/utils.h index b89a6c2..e21dd2e 100644 --- a/src/utils.h +++ b/src/utils.h @@ -3,8 +3,6 @@ #ifndef __CUTILS_H__ #define __CUTILS_H__ -#include "version.h" - typedef struct list_item_t { void *data; struct list_item_t *next; @@ -28,4 +26,6 @@ iterator_t clist_iterator (list_t *); int clist_iterator_has_next(iterator_t); void *clist_iterator_next (iterator_t *); +char *cutils_version(); + #endif /* __CUTILS_H__ */ |