blob: 2625765fda4b00860add949dc079f035eaf8817e (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef __STRING_UTIL_H
#define __STRING_UTIL_H
#include <sys/types.h>
size_t strlcpy(char *dst, const char *src, size_t siz);
size_t strlcat(char *dst, const char *src, size_t siz);
char *str_replace(const char *str, const char *old, const char *new);
#endif
|