diff options
| author | 2022-09-01 13:04:26 +0200 | |
|---|---|---|
| committer | 2022-09-01 14:07:46 +0200 | |
| commit | 6ea6819e5a8b6e2b2c818249642e7923db9f81c8 (patch) | |
| tree | 01aeb453d0b18e2cad018970daedb216095ad028 /src/libc.hff | |
| parent | 2e0160015d756702a799be95db237b7a91bae400 (diff) | |
on big aggregates big, use a hash map to lookup fields
Diffstat (limited to 'src/libc.hff')
| -rw-r--r-- | src/libc.hff | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libc.hff b/src/libc.hff index 533a933..57ff532 100644 --- a/src/libc.hff +++ b/src/libc.hff @@ -33,6 +33,7 @@ extern fn strncmp(a *const u8, b *const u8, usize) int; extern fn memcmp(*const void, *const void, usize) int; extern fn strcasecmp(a *const u8, b *const u8) int; extern fn memcpy(*void, *const void, usize) *void; +extern fn memset(*const void, int, usize) *void; extern fn strcpy(*u8, *const u8) *u8; extern fn strerror(int) *const u8; extern fn strstr(*const u8, *const u8) *const u8; |