Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 241 Bytes

strcpy.sh.md

File metadata and controls

10 lines (8 loc) · 241 Bytes

strcpy

strcpy -- Copies a string from a variable to another variable.

Assigns the content of a variable specified as source into destination.

Usage

// 1. Function form.
void func::strcpy(string* destination, string *source)