@@ -292,7 +292,8 @@ xreallocarray (void *o, size_t n, size_t m)
staticchar*
xstrdup(constchar*s)
{
returnstrcpy(xmalloc(strlen(s)+1),s);
size_tlen=strlen(s)+1;
returnmemcpy(xmalloc(len),s,len);
}
staticchar*
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.