mirror of
https://github.com/zeldaret/mm.git
synced 2026-05-24 15:20:49 -04:00
13 lines
187 B
C
13 lines
187 B
C
#include "global.h"
|
|
|
|
char* __osStrcpy(char* dst, const char* src) {
|
|
char* _dst = dst;
|
|
|
|
while (*src != '\0') {
|
|
*_dst++ = *src++;
|
|
}
|
|
*_dst = '\0';
|
|
|
|
return dst;
|
|
}
|