GBDK 2020 API Docs
API Documentation for GBDK 2020
 All Classes Files Functions Variables Typedefs Macros Pages
string.h
Go to the documentation of this file.
1 
4 #ifndef STRING_INCLUDE
5 #define STRING_INCLUDE
6 
7 #include <types.h>
8 
20 char *strcpy(char *dest, const char *src) NONBANKED;
21 
32 int strcmp(const char *s1, const char *s2) NONBANKED;
33 
42 void *memcpy(void *dest, const void *src, size_t len) NONBANKED;
43 
50 void *memset (void *s, int c, size_t n);
51 
62 char *reverse(char *s);
63 
75 char *strcat(char *s1, const char *s2) NONBANKED;
76 
83 int strlen(const char *s) NONBANKED;
84 
95 char *strncat(char *s1, const char *s2, int n) NONBANKED;
96 
108 int strncmp(const char *s1, const char *s2, int n) NONBANKED;
109 
125 char *strncpy(char *s1, const char *s2, int n) NONBANKED;
126 
127 #endif
int strcmp(const char *s1, const char *s2) NONBANKED
int strncmp(const char *s1, const char *s2, int n) NONBANKED
char * strncat(char *s1, const char *s2, int n) NONBANKED
int strlen(const char *s) NONBANKED
UINT8 c
Definition: gb.h:279
#define NONBANKED
Definition: types.h:11
char * strcat(char *s1, const char *s2) NONBANKED
char * reverse(char *s)
char * strncpy(char *s1, const char *s2, int n) NONBANKED
char * strcpy(char *dest, const char *src) NONBANKED
void * memset(void *s, int c, size_t n)
void * memcpy(void *dest, const void *src, size_t len) NONBANKED