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

#598 in Embedded development

Download history 16/week @ 2024-02-25 18/week @ 2024-03-10 147/week @ 2024-03-17 20/week @ 2024-03-24 31/week @ 2024-03-31

216 downloads per month

Custom license

58KB
1.5K SLoC

Rust 1K SLoC // 0.0% comments C 298 SLoC // 0.3% comments

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–385KB