sttemp

Simple template manager
git clone git://git.konyahin.xyz/sttemp
Log | Files | Refs | README | LICENSE

strings.h (205B)


      1 /* See LICENSE file for copyright and license details. */
      2 
      3 #include <stdlib.h>
      4 #include <string.h>
      5 
      6 /**
      7  * Concat two string buffers in new one.
      8  */
      9 char* strconcat(const char* first, const char* second);