summaryrefslogtreecommitdiff
path: root/include/bsd/string.h
blob: ed319339e8203d6276cb63a36351bbaf07b34261 (plain)
1
2
3
4
5
6
7
8
9
10
11
#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