Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 515 Bytes

README.md

File metadata and controls

36 lines (24 loc) · 515 Bytes

flibc

Freestanding libc implementation. Useful for operating system kernels, bootloaders, small statically linked applications, or as a starting point for your own libc.

Implemented Methods

ctype.h

  • isblank
  • isdigit
  • isspace

stdlib.h

  • itoa

string.h

  • memcmp
  • memcpy
  • memmove
  • memset
  • strlen
  • strnlen

Project Non-Goals

  • Locales
  • Wide chars

License

Released under the terms of the MIT license. See LICENSE file in project root for more details.