2014-05-14 22:10:34 -04:00
|
|
|
/*
|
2014-05-16 08:22:25 -04:00
|
|
|
* r3_str.h
|
2014-05-14 22:10:34 -04:00
|
|
|
* Copyright (C) 2014 c9s <c9s@c9smba.local>
|
|
|
|
*
|
|
|
|
* Distributed under terms of the MIT license.
|
|
|
|
*/
|
|
|
|
#ifndef STR_H
|
|
|
|
#define STR_H
|
|
|
|
|
2014-05-20 11:54:57 -04:00
|
|
|
#include "r3.h"
|
2014-05-16 19:26:47 -04:00
|
|
|
#include "config.h"
|
2014-05-15 10:57:13 -04:00
|
|
|
|
2014-05-20 11:21:15 -04:00
|
|
|
int slug_count(char * p, int len);
|
2014-05-15 12:00:19 -04:00
|
|
|
|
2014-05-20 11:25:55 -04:00
|
|
|
char * slug_compile(char * str, int len);
|
2014-05-15 11:46:49 -04:00
|
|
|
|
2014-05-16 00:33:59 -04:00
|
|
|
bool contains_slug(char * str);
|
|
|
|
|
2014-05-23 01:49:18 -04:00
|
|
|
char * slug_find_pattern(char *s1, int *len);
|
2014-05-18 06:58:31 -04:00
|
|
|
|
2014-05-23 01:49:18 -04:00
|
|
|
char * slug_find_placeholder(char *s1, int *len);
|
2014-05-18 06:58:31 -04:00
|
|
|
|
|
|
|
char * inside_slug(char * needle, int needle_len, char *offset);
|
2014-05-15 08:38:07 -04:00
|
|
|
|
2014-05-15 00:53:48 -04:00
|
|
|
char * ltrim_slash(char* str);
|
|
|
|
|
2014-05-15 06:02:10 -04:00
|
|
|
void str_repeat(char *s, char *c, int len);
|
|
|
|
|
|
|
|
void print_indent(int level);
|
|
|
|
|
2014-05-16 19:26:47 -04:00
|
|
|
#ifndef HAVE_STRDUP
|
|
|
|
char *strdup(const char *s);
|
|
|
|
#endif
|
2014-05-16 12:35:56 -04:00
|
|
|
|
2014-05-16 19:26:47 -04:00
|
|
|
#ifndef HAVE_STRNDUP
|
|
|
|
char *strndup(const char *s, int n);
|
|
|
|
#endif
|
2014-05-16 12:35:56 -04:00
|
|
|
|
2014-05-15 08:38:07 -04:00
|
|
|
|
2014-05-14 22:10:34 -04:00
|
|
|
#endif /* !STR_H */
|
2014-05-15 06:02:10 -04:00
|
|
|
|