Subversion Repositories filter_foundry

Rev

Rev 439 | Rev 444 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 439 Rev 440
Line 26... Line 26...
26
unsigned char *myc2pstrcpy(unsigned char *dst,const char *src);
26
unsigned char *myc2pstrcpy(unsigned char *dst,const char *src);
27
char *cat(char *d,char *s); // returns pointer after last character copied
27
char *cat(char *d,char *s); // returns pointer after last character copied
28
//void *my_memset(void *dst, int val, size_t len);
28
//void *my_memset(void *dst, int val, size_t len);
29
char *my_strdup(char *s); // my_strdup() is like _strdup(), with the difference that it accepts "char*" instead of "const char*" as argument
29
char *my_strdup(char *s); // my_strdup() is like _strdup(), with the difference that it accepts "char*" instead of "const char*" as argument
30
 
30
 
-
 
31
// DM 03.12.2021 removed, because it is not used in Filter Foundry
31
unsigned char *PLcstrcat(unsigned char * str1,const char * s2);
32
//unsigned char *PLcstrcat(unsigned char * str1,const char * s2);
32
unsigned char *PLcstrcpy(unsigned char *s1,const char *s2);
33
//unsigned char *PLcstrcpy(unsigned char *s1,const char *s2);
33
 
34
 
-
 
35
// DM 03.12.2021 removed, because it is not used in Filter Foundry
34
/* in-place conversion from Pascal to C string */
36
/* in-place conversion from Pascal to C string */
35
#define INPLACEP2CSTR(s) ((s)[*(s)+1] = 0,(char*)(s)+1)
37
//#define INPLACEP2CSTR(s) ((s)[*(s)+1] = 0,(char*)(s)+1)
36
 
38
 
37
#endif
39
#endif