MCPcopy Create free account
hub / github.com/ZeroIntensity/pointers.py / strcpy

Function strcpy

src/pointers/bindings.py:917–922  ·  view source on GitHub ↗
(dest: StringLike, src: StringLike)

Source from the content-addressed store, hash-verified

915
916
917def strcpy(dest: StringLike, src: StringLike) -> str:
918 return binding_base(
919 dll.strcpy,
920 make_string(dest),
921 make_string(src),
922 )
923
924
925def strncpy(dest: StringLike, src: StringLike, n: int) -> str:

Callers 1

_Function · 0.90

Calls 2

binding_baseFunction · 0.85
make_stringFunction · 0.85

Tested by 1

_Function · 0.72