copyright info and version bump
This commit is contained in:
parent
6363789394
commit
81030b5ae4
|
@ -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++
|
A Simple Dynamic Strings Library for C and C++
|
||||||
|
|
||||||
Version History:
|
Version History:
|
||||||
|
0.96 - Add printf
|
||||||
0.95b - Fix issue #21
|
0.95b - Fix issue #21
|
||||||
0.95a - Change brace style because why not?
|
0.95a - Change brace style because why not?
|
||||||
0.95 - C90 Support
|
0.95 - C90 Support
|
||||||
|
|
|
@ -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
|
#define GB_STRING_IMPLEMENTATION
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
Loading…
Reference in New Issue