9 lines
115 B
C
9 lines
115 B
C
|
#ifndef STRLCAT_H
|
||
|
#define STRLCAT_H
|
||
|
|
||
|
#include <sys/types.h>
|
||
|
|
||
|
size_t strlcat(char *, const char *, size_t);
|
||
|
|
||
|
#endif
|