aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/mlibc/string/strcati.c
blob: 312792f39c77c4919b59bdf8ce88585400ef2f15 (plain) (blame)
1
2
3
4
5
6
7
8
#include <mlibc/stdlib.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];
}