7 unstable releases
0.4.0 | Mar 22, 2024 |
---|---|
0.3.0 | Oct 19, 2022 |
0.2.2 | Mar 18, 2022 |
0.2.1 | May 17, 2021 |
0.1.2 | Sep 1, 2019 |
#1718 in Embedded development
269 downloads per month
58KB
1.5K
SLoC
Tiny Rust libc
Introduction
This is a tiny libc implementation, mostly (but not entirely) written in the Rust programming language. It is useful for bare-metal embedded Rust applications that need a C library (maybe because of some third-party library written in C they want to use) but don't want to link against a full newlib, or who tried but had trouble with both newlib and compiler_builtins defining symbols like memset
.
This crate basically came about so that the nrfxlib binary interface library for the nRF9160 would work with Rust.
Implemented so far
- abs
- strol
- atoi
- isspace
- isdigit
- isalpha
- isupper
- strcmp
- strncmp
- strncasecmp
- strcpy
- strncpy
- strlen
- strtol
- strtoll
- strtoul
- strtoull
- strtoimax
- strtoumax
- strstr
- strchr
- snprintf
- vsnprintf
- alloc (optional)
- malloc
- calloc
- realloc
- free
- signal (optional)
- signal
- raise
- abort
Non-standard helper functions
- itoa
- utoa
To Do
- Anything else nrfxlib needs
- Anything anyone is prepared to submit
Licence
As this is going to be a bunch of bits taken from all over the place (some newlib, some relibc, etc), each function has its own file and each file has its own licence. Any new licences should be appended to the LICENCE.md file.
Dependencies
~0–540KB
~11K SLoC