GitBucket
Toggle navigation
Pull requests
Issues
Snippets
Sign in
Files
Branches
6
Releases
Fork
: 0
uBixOS
/
ubixos
Transfer to URL with SHA
Find file
Newer
Older
tree:
58fd56155f
Branches
Tags
×
UBIXOS-0.01
UBIXOS-0.5
UBIXOS-1.0
UBIXOS-OLD
UBIXOS-PRE
master
ubixos
/
Dump
/
hybos
/
lib
/
string
/ strcpy.c
Christopher W. Olsen
on 5 Nov 2018
81 bytes
Sync
Raw
Blame
History
char *strcpy(char *s, const char *t) { while((*(s++) = *(t++))); return s; }