forked from inflex/alterMIME
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pldstr.h
40 lines (31 loc) · 940 Bytes
/
pldstr.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#ifndef __PLDSTR__
#define __PLDSTR__
#ifndef FL
#define FL __FILE__,__LINE__
#endif
struct PLD_strtok
{
char *start;
char delimeter;
};
struct PLD_strreplace
{
char *source;
char *searchfor;
char *replacewith;
char *preexist;
char *postexist;
int replacenumber;
int insensitive;
};
char *PLD_strstr(char *haystack, char *needle, int insensitive);
char *PLD_strncpy( char *dst, const char *src, size_t len );
char *PLD_strncat( char *dst, const char *src, size_t len );
char *PLD_strncate( char *dst, const char *src, size_t len, char *endpoint );
char *PLD_strtok( struct PLD_strtok *st, char *line, char *delimeters );
int PLD_strncasecmp( char *s1, char *s2, int n );
int PLD_strlower( char *convertme );
char *PLD_strreplace_general( struct PLD_strreplace *replace_details );
char *PLD_strreplace( char **source, char *searchfor, char *replacewith, int replacenumber );
char *PLD_dprintf(const char *fmt, ...);
#endif