add include

This commit is contained in:
c9s 2014-05-15 10:10:34 +08:00
parent fec873b411
commit ff1800cd4a
3 changed files with 31 additions and 0 deletions

1
.gitignore vendored
View file

@ -5,3 +5,4 @@ CTestTestfile.cmake
cmake_install.cmake cmake_install.cmake
install_manifest.txt install_manifest.txt
*.a *.a
Testing

18
include/node.h Normal file
View file

@ -0,0 +1,18 @@
/*
* node.h
* Copyright (C) 2014 c9s <c9s@c9smba.local>
*
* Distributed under terms of the MIT license.
*/
#ifndef NODE_H
#define NODE_H
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#endif /* !NODE_H */

12
include/str.h Normal file
View file

@ -0,0 +1,12 @@
/*
* str.h
* Copyright (C) 2014 c9s <c9s@c9smba.local>
*
* Distributed under terms of the MIT license.
*/
#ifndef STR_H
#define STR_H
char** split_route_pattern(char *pattern, int pattern_len);
#endif /* !STR_H */