2025-09-13 05:36:32 -04:00
|
|
|
#ifndef TREE_SITTER_WASM_STRING_H_
|
|
|
|
|
#define TREE_SITTER_WASM_STRING_H_
|
|
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
|
|
int memcmp(const void *lhs, const void *rhs, size_t count);
|
|
|
|
|
|
|
|
|
|
void *memcpy(void *restrict dst, const void *restrict src, size_t size);
|
|
|
|
|
|
|
|
|
|
void *memmove(void *dst, const void *src, size_t count);
|
|
|
|
|
|
|
|
|
|
void *memset(void *dst, int value, size_t count);
|
|
|
|
|
|
|
|
|
|
int strncmp(const char *left, const char *right, size_t n);
|
|
|
|
|
|
2026-01-06 19:01:37 +08:00
|
|
|
size_t strlen(const char *str);
|
|
|
|
|
|
2025-09-13 05:36:32 -04:00
|
|
|
#endif // TREE_SITTER_WASM_STRING_H_
|