cosmopolitan/libc/mem/internal.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
374 B
C
Raw Normal View History

2020-06-15 14:18:57 +00:00
#ifndef COSMOPOLITAN_LIBC_MEM_INTERNAL_H_
#define COSMOPOLITAN_LIBC_MEM_INTERNAL_H_
COSMOPOLITAN_C_START_
2022-08-13 15:32:34 +00:00
struct CritbitNode {
void *child[2];
uint32_t byte;
unsigned otherbits;
};
int __putenv(char *, bool) libcesque;
2023-11-16 04:57:18 +00:00
bool __grow(void *, size_t *, size_t, size_t) paramsnonnull((1, 2)) libcesque;
2020-06-15 14:18:57 +00:00
COSMOPOLITAN_C_END_
#endif /* COSMOPOLITAN_LIBC_MEM_INTERNAL_H_ */