add include
This commit is contained in:
parent
fec873b411
commit
ff1800cd4a
3 changed files with 31 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -5,3 +5,4 @@ CTestTestfile.cmake
|
|||
cmake_install.cmake
|
||||
install_manifest.txt
|
||||
*.a
|
||||
Testing
|
||||
|
|
18
include/node.h
Normal file
18
include/node.h
Normal 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
12
include/str.h
Normal 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 */
|
Loading…
Reference in a new issue