diff --git a/.gitignore b/.gitignore index 02d709a..41390ca 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ CTestTestfile.cmake cmake_install.cmake install_manifest.txt *.a +Testing diff --git a/include/node.h b/include/node.h new file mode 100644 index 0000000..8386471 --- /dev/null +++ b/include/node.h @@ -0,0 +1,18 @@ +/* + * node.h + * Copyright (C) 2014 c9s + * + * Distributed under terms of the MIT license. + */ + +#ifndef NODE_H +#define NODE_H + +#include +#include +#include +#include + + + +#endif /* !NODE_H */ diff --git a/include/str.h b/include/str.h new file mode 100644 index 0000000..dc83cdd --- /dev/null +++ b/include/str.h @@ -0,0 +1,12 @@ +/* + * str.h + * Copyright (C) 2014 c9s + * + * 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 */