aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/mlibc/string/strcati.c
blob: 8fdcc1a14927bbce38f94e2b05173a6e582bde0f (plain) (blame)
1
2
3
4
5
6
7
8
#include <mlibc/string.h>

void strcati(char *dest, const char *orig)
{
    size_t s_orig = strlen(orig);
    strdisp(dest, (int) s_orig);
    for (size_t i = 0; i < s_orig; i++) dest[i] = orig[i];
}