copyright info and version bump

This commit is contained in:
Peter McGoron 2021-07-21 23:28:05 -04:00
parent 6363789394
commit 81030b5ae4
2 changed files with 8 additions and 1 deletions

View File

@ -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

View File

@ -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>