foralex / picoc

Automatically exported from code.google.com/p/picoc
0 stars 0 forks source link

Add C string functions #58

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Add C string functions.

void strcpy(char *,char *)
void strncpy(char *,char *,int)
int strcmp(char *,char *)
int strncmp(char *,char *,int)
void strcat(char *,char *)
char *index(char *,int)
char *rindex(char *,int)
int strlen(char *)
void memset(void *,int,int)
void memcpy(void *,void *,int)
int memcmp(void *,void *,int)

Original issue reported on code.google.com by zik.sale...@gmail.com on 25 Oct 2009 at 9:14

GoogleCodeExporter commented 8 years ago
String functions added in revision #353

Original comment by zik.sale...@gmail.com on 28 Oct 2009 at 9:36