MCPcopy Create free account
hub / github.com/kiibohd/controller / strcpy

Function strcpy

Output/SeggerRTT/string.c:19–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17#include <stddef.h>
18
19char *strcpy(char *dst, const char *src)
20{
21 char *s = dst;
22
23 while ( (*dst++ = *src++) )
24 ;
25
26 return s;
27}
28
29size_t strlen(const char *str)
30{

Callers 1

_DoInitFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…