mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-01-01 06:23:35 +01:00
Ajout de la fonction srtcat et modification du 0 de la police de la Graph 90+E
This commit is contained in:
parent
62ae7e19d4
commit
8cbd5be038
2 changed files with 11 additions and 0 deletions
|
@ -19,4 +19,7 @@ size_t strlen(char const *str);
|
||||||
/* strncpy(): Copy a string with a size limit*/
|
/* strncpy(): Copy a string with a size limit*/
|
||||||
char *strncpy(char *dst, char const *src, size_t n);
|
char *strncpy(char *dst, char const *src, size_t n);
|
||||||
|
|
||||||
|
/* strcat(): Concatenation of src in dest*/
|
||||||
|
char *strcat(char *dest, const char *src);
|
||||||
|
|
||||||
#endif /* GINT_STD_STRING */
|
#endif /* GINT_STD_STRING */
|
||||||
|
|
|
@ -19,3 +19,11 @@ GWEAK char *strncpy(char *dst, const char *src, size_t n)
|
||||||
while(i < n && (dst[i] = src[i])) i++;
|
while(i < n && (dst[i] = src[i])) i++;
|
||||||
return dst;
|
return dst;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
GWEAK char *strcat(char *dest, const char *src)
|
||||||
|
{
|
||||||
|
unsigned long fin_dest = strlen(dest);
|
||||||
|
unsigned int i;
|
||||||
|
for (i = 0 ; i <= strlen(src) ; i++) dest[fin_dest + i] = src[i];
|
||||||
|
return dest;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue