summaryrefslogtreecommitdiff
path: root/src/lib/string.h
blob: 72585ac638f1141100ed40cd7438fb8ecf0b163e (plain)
1
2
3
4
5
6
7
8
9
#ifndef STRING_H
#define STRING_H

#include <stddef.h>

size_t strlen(const char *s);
char *strcpy(char *restrict dst, const char *restrict src);

#endif /* STRING_H */