MCPcopy Create free account
hub / github.com/Meituan-Dianping/SQLAdvisor / strcpy

Method strcpy

sql/sql_string.h:102–106  ·  view source on GitHub ↗

Copy to the given buffer */

Source from the content-addressed store, hash-verified

100 Copy to the given buffer
101 */
102 void strcpy(char *buff) const
103 {
104 memcpy(buff, m_str, m_length);
105 buff[m_length]= '\0';
106 }
107};
108
109

Callers 1

copy_nameMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected