aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Peter McGoron 2021-07-21 23:28:05 -0400
committerGravatar Peter McGoron 2021-07-21 23:28:05 -0400
commit81030b5ae430f50af705411d697f0e7b710bfe85 (patch)
tree7404d1d954574e890ca749e8a618e5537103887d
parentadd gb_string_test.c (diff)
copyright info and version bump
-rw-r--r--gb_string.h3
-rw-r--r--gb_string_test.c6
2 files changed, 8 insertions, 1 deletions
diff --git a/gb_string.h b/gb_string.h
index bb665b2..de4358c 100644
--- a/gb_string.h
+++ b/gb_string.h
@@ -1,7 +1,8 @@
-/* gb_string.h - v0.95a - public domain string library - no warranty implied; use at your own risk
+/* gb_string.h - v0.96 - public domain string library - no warranty implied; use at your own risk
A Simple Dynamic Strings Library for C and C++
Version History:
+ 0.96 - Add printf
0.95b - Fix issue #21
0.95a - Change brace style because why not?
0.95 - C90 Support
diff --git a/gb_string_test.c b/gb_string_test.c
index 43ea494..d326abc 100644
--- a/gb_string_test.c
+++ b/gb_string_test.c
@@ -1,3 +1,9 @@
+/*
+ This software is in the public domain. Where that dedication is not
+ recognized, you are granted a perpetual, irrevocable license to copy,
+ distribute, and modify this file as you see fit.
+*/
+
#define GB_STRING_IMPLEMENTATION
#include <stdarg.h>
#include <stdlib.h>