File: pldstr.h

package info (click to toggle)
altermime 0.3.8-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 512 kB
  • ctags: 562
  • sloc: ansic: 5,800; makefile: 57; sh: 40
file content (40 lines) | stat: -rw-r--r-- 940 bytes parent folder | download | duplicates (14)
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