aboutsummaryrefslogtreecommitdiff
path: root/src/utstack.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/utstack.h')
-rw-r--r--src/utstack.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/utstack.h b/src/utstack.h
index 3b0c1a0df..fc390de10 100644
--- a/src/utstack.h
+++ b/src/utstack.h
@@ -1,5 +1,5 @@
/*
-Copyright (c) 2018-2018, Troy D. Hanson http://troydhanson.github.com/uthash/
+Copyright (c) 2018-2021, Troy D. Hanson http://troydhanson.github.io/uthash/
All rights reserved.
Redistribution and use in source and binary forms, with or without
@@ -24,7 +24,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef UTSTACK_H
#define UTSTACK_H
-#define UTSTACK_VERSION 2.1.0
+#define UTSTACK_VERSION 2.3.0
/*
* This file contains macros to manipulate a singly-linked list as a stack.
@@ -35,9 +35,9 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
* struct item {
* int id;
* struct item *next;
- * }
+ * };
*
- * struct item *stack = NULL:
+ * struct item *stack = NULL;
*
* int main() {
* int count;