repo.or.cz
/
maemo-rb.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Prepare new, unofficial pandora build
[maemo-rb.git]
/
firmware
/
libc
/
strcat.c
blob
221529519cc908a75b8982e3f199949d31f203cf
1
#include <string.h>
2
3
char
*
strcat
(
char
*
s1
,
4
const char
*
s2
)
5
{
6
char
*
s
=
s1
;
7
8
while
(*
s1
)
9
s1
++;
10
11
while
((*
s1
++ = *
s2
++))
12
;
13
return
s
;
14
}