blob: d82fbfcbee45c1dd823c2987cb5e89bcd3557190 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#include <stdint.h>
#include <string.h>
void strcati(char *dest, char *orig)
{
u32 s_orig = strlen(orig);
strdisp(dest, (int)s_orig);
for (u32 i = 0; i < s_orig; i++)
dest[i] = orig[i];
}
|