chiark
/
gitweb
/
~ianmdlvl
/
elogind.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
test: add "driver" and "bus" links to test sysfs tree
[elogind.git]
/
klibc
/
klibc
/
strcpy.c
1
/*
2
* strcpy.c
3
*
4
* strcpy()
5
*/
6
7
#include <string.h>
8
9
char *strcpy(char *dst, const char *src)
10
{
11
char *q = dst;
12
const char *p = src;
13
char ch;
14
15
do {
16
*q++ = ch = *p++;
17
} while ( ch );
18
19
return dst;
20
}