shithub: npe

ref: 086f757bc0f6c51c01e6300ce0370d774e6f9864
dir: /include/npe/string.h/

View raw version
#ifndef _npe_string_h_
#define _npe_string_h_

#include <npe.h>

char *strerror(int errnum);
int strerror_r(int errnum, char *buf, size_t buflen);
size_t strlcpy(char *dst, char *src, size_t sz);
size_t strnlen(char *s, size_t maxlen);
char *strtok_r(char *s, char *b, char **last);

#endif