-
-
Notifications
You must be signed in to change notification settings - Fork 704
Core Library
Clay Murray edited this page Aug 20, 2020
·
15 revisions
Index
- builtin
- c
- container
- dynlib
- encoding
- fmt
- hash
- intrinsics
- log
- math
- mem
- odin
- os
- path
- reflect
- runtime
- sort
- strconv
- strings
- sync
- thread
- time
- unicode
Core Odin procs that are available to use without any imports.
Current compiler platform os. windows
darwin
(MacOS) linux
Pointer to memory address. Same function as void *
in c. Prefer ^T
where possible in odin.
C style string with null terminator \0
Types for interfacing for foreign c functions
i32 on all windows systems or when platform is 32 bit
i64 on all other 64 bit platforms
u32 on all windows systems or when platform is 32 bit
u64 on all other 64 bit platforms
u16 on windows
u32 on all other platforms