16 lines
171 B
C
16 lines
171 B
C
|
|
#ifndef STRING_H
|
|
#define STRING_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void strcpy(char * dst, const char * src);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|