mirror of
https://gitlab.freedesktop.org/libbsd/libbsd.git
synced 2025-01-10 11:35:32 +01:00
12 lines
250 B
C
12 lines
250 B
C
#ifndef LIBBSD_STRING_H
|
|
#define LIBBSD_STRING_H
|
|
|
|
#include <sys/types.h>
|
|
#include <stdio.h>
|
|
|
|
size_t strlcpy(char *dst, const char *src, size_t siz);
|
|
size_t strlcat(char *dst, const char *src, size_t siz);
|
|
char *fgetln(FILE *fp, size_t *lenp);
|
|
|
|
#endif
|