42 void *
memcpy(
void *dest, 
const void *src, 
size_t len);
 
   46 void *
memmove (
void *dest, 
const void *src, 
size_t n);
 
   79 char *
strcat(
char *s1, 
const char *s2);
 
   99 char *
strncat(
char *s1, 
const char *s2, 
int n);
 
  115 int strncmp(
const char *s1, 
const char *s2, 
int n);
 
  132 char *
strncpy(
char *s1, 
const char *s2, 
int n);
 
int strcmp(const char *s1, const char *s2)
 
char * strcat(char *s1, const char *s2) NONBANKED
 
char * strncat(char *s1, const char *s2, int n) NONBANKED
 
char * strncpy(char *s1, const char *s2, int n) NONBANKED
 
char * reverse(char *s) NONBANKED
 
void * memmove(void *dest, const void *src, size_t n) OLDCALL
 
int strncmp(const char *s1, const char *s2, int n) NONBANKED
 
int memcmp(const void *buf1, const void *buf2, size_t count)
 
int strlen(const char *s) OLDCALL
 
void * memset(void *s, int c, size_t n)
 
char * strcpy(char *dest, const char *src) OLDCALL
 
char c
Definition: string.h:20
 
void * memcpy(void *dest, const void *src, size_t len)
 
#define OLDCALL
Definition: types.h:21
 
#define PRESERVES_REGS(...)
Definition: types.h:32
 
void b
Definition: gb.h:748