summaryrefslogtreecommitdiff
path: root/src/boot/O2/__osStrcpy.c
blob: 86a98a804ad378f9c06ca327e865e3228172fb0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "global.h"

char* __osStrcpy(char* dst, const char* src) {
    char* _dst = dst;

    while (*src != '\0') {
        *_dst++ = *src++;
    }
    *_dst = '\0';

    return dst;
}