GitBucket
Toggle navigation
Pull requests
Issues
Snippets
Sign in
Files
Branches
3
Releases
2
Fork
: 0
ohpnjrpnicow
/
UbixOS
Transfer to URL with SHA
Find file
Newer
Older
branch:
1.5-RELEASE
Branches
Tags
×
1.0-RELEASE
1.5-RELEASE
master
UbixOS
/
Dump
/
hybos
/
lib
/
string
/ strpst.c
Christopher W. Olsen
on 5 Nov 2018
91 bytes
Sync
Raw
Blame
History
char *strpst(char *s, const char *t) { while(*t) { *(s++) = *(t++); }; return s; }