mirror of
https://github.com/ziglang/zig.git
synced 2026-02-04 05:33:39 +00:00
12 lines
273 B
C
Vendored
12 lines
273 B
C
Vendored
#ifndef STRING_H
|
|
#define STRING_H
|
|
|
|
#include "../../include/string.h"
|
|
|
|
hidden void *__memrchr(const void *, int, size_t);
|
|
hidden char *__stpcpy(char *, const char *);
|
|
hidden char *__stpncpy(char *, const char *, size_t);
|
|
hidden char *__strchrnul(const char *, int);
|
|
|
|
#endif
|