elks-enhanced
public
Read
Owner: themaster
Branch: master
Commits: 6893
Updated: 2026-04-19 00:15
Git CLI clone URL
git clone https://www.xt-emporium.com/git/elks-enhanced.git
Fullscreen desktop URL
Code
Commits
History
Branches
Bug Reports
Discussions
Compare
Settings
elks-enhanced
/
libc
/
string
/
strncat.c
File editor
#include <string.h> char * strncat(char *d, const char *s, size_t l) { register char *s1=d+strlen(d), *s2; s2 = memchr(s, 0, l); if( s2 ) memcpy(s1, s, s2-s+1); else { memcpy(s1, s, l); s1[l] = '\0'; } return d; }
Commit message
This repository is read-only for this account.
Repository snapshot
Current branch
master
Visibility
public
Your access
Read
Remote
Configured
File activity
View file history