sttemp

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

token.h (220B)


      1 /* See LICENSE file for copyright and license details. */
      2 
      3 #include <stdlib.h>
      4 #include <string.h>
      5 
      6 void free_tokens();
      7 void add_new_token(char* name, char* value);
      8 char* find_in_tokens(const char* name, size_t length);