mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
e75ffde09e
You can now build Cosmopolitan with Clang: make -j8 MODE=llvm o/llvm/examples/hello.com The assembler and linker code is now friendly to LLVM too. So it's not needed to configure Clang to use binutils under the hood. If you love LLVM then you can now use pure LLVM.
31 lines
1.5 KiB
C
31 lines
1.5 KiB
C
#ifndef COSMOPOLITAN_LIBC_ALG_ARRAYLIST_H_
|
|
#define COSMOPOLITAN_LIBC_ALG_ARRAYLIST_H_
|
|
#include "libc/bits/bits.h"
|
|
#include "libc/mem/mem.h"
|
|
#include "libc/str/str.h"
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
|
|
/* TOOD(jart): DELETE */
|
|
|
|
#define append(ARRAYLIST, ITEM) concat((ARRAYLIST), (ITEM), 1)
|
|
|
|
#ifndef concat
|
|
#define concat(ARRAYLIST, ITEM, COUNT) \
|
|
({ \
|
|
autotype(ARRAYLIST) List = (ARRAYLIST); \
|
|
autotype(&List->p[0]) Item = (ITEM); \
|
|
size_t SizE = sizeof(*Item); \
|
|
size_t Count = (COUNT); \
|
|
size_t Idx = List->i; \
|
|
if (Idx + Count < List->n || __grow(&List->p, &List->n, SizE, Count)) { \
|
|
memcpy(&List->p[Idx], Item, SizE *Count); \
|
|
List->i = Idx + Count; \
|
|
} else { \
|
|
Idx = -1UL; \
|
|
} \
|
|
(ssize_t)(Idx); \
|
|
})
|
|
#endif /* concat */
|
|
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
#endif /* COSMOPOLITAN_LIBC_ALG_ARRAYLIST_H_ */
|