a
This commit is contained in:
10
libc/runestrcat.c
Normal file
10
libc/runestrcat.c
Normal file
@ -0,0 +1,10 @@
|
||||
#include <u.h>
|
||||
#include <libc.h>
|
||||
|
||||
Rune*
|
||||
runestrcat(Rune *s1, Rune *s2)
|
||||
{
|
||||
|
||||
runestrcpy(runestrchr(s1, 0), s2);
|
||||
return s1;
|
||||
}
|
Reference in New Issue
Block a user