13 lines
221 B
C
13 lines
221 B
C
|
/*
|
||
|
* 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 */
|