diff options
author | Max <mparisi@stevens.edu> | 2020-10-30 02:05:35 -0400 |
---|---|---|
committer | Max <mparisi@stevens.edu> | 2020-10-30 02:05:35 -0400 |
commit | d96e18f2d6f0c92639929523051d3bd2c787333b (patch) | |
tree | 56edf2e9bdc02ac0cc56f1bde9693fdbb587e698 /include/MSL_C/string.h | |
parent | 47a1bdea8872c79dd2cd7d75ca7f254b9ed13170 (diff) |
match up to func_801DD294
Diffstat (limited to 'include/MSL_C/string.h')
-rw-r--r-- | include/MSL_C/string.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/MSL_C/string.h b/include/MSL_C/string.h index 83b7bd0..7b4755c 100644 --- a/include/MSL_C/string.h +++ b/include/MSL_C/string.h @@ -10,6 +10,10 @@ void *memmove(void *dest, const void *src, size_t n); void *memcpy(void *dest, const void *src, size_t n);
int strcmp(const char *s1, const char *s2);
int strncmp(const char *s1, const char *s2, size_t n);
+char *strcpy(char *dest, const char *src);
+char *strncpy(char *dest, const char *src, size_t n);
+char *strcat(char *dest, const char *src);
+char *strncat(char *dest, const char *src, size_t n);
#ifdef __cplusplus
}
|