Projects/psql-admtools
Projects
/
psql-admtools
Archived
13
0
Fork 0
This repository has been archived on 2024-07-04. You can view files and clone it, but cannot push or open issues or pull requests.
psql-admtools/misc.c

13 lines
143 B
C
Raw Normal View History

#include <string.h>
char *
strlcpy(char *dest, char *src, size_t n)
{
char *p;
p = strncpy(dest, src, n);
dest[n-1] = '\0';
return p;
}