A modern wrapper for libc with less boilerplate
Find a file
2021-07-26 23:26:14 +02:00
.vscode initial commit uwu 2021-07-09 00:04:44 +02:00
contrib doc: install doxygen-awesome-css theme 2021-07-26 23:26:14 +02:00
demo remove jemalloc and fall back to libc 2021-07-10 20:55:44 +02:00
doc doc: use doxygen-awesome theme 2021-07-26 22:58:51 +02:00
include nstr: add nput convenience wrappers 2021-07-26 22:42:16 +02:00
src nstr: add nput convenience wrappers 2021-07-26 22:42:16 +02:00
test utf8_check: test return values 2021-07-24 22:34:23 +02:00
.editorconfig initial commit uwu 2021-07-09 00:04:44 +02:00
.gitignore initial commit uwu 2021-07-09 00:04:44 +02:00
.gitmodules doc: use doxygen-awesome theme 2021-07-26 22:58:51 +02:00
CMakeLists.txt doc: use doxygen-awesome theme 2021-07-26 22:58:51 +02:00
LICENSE initial commit uwu 2021-07-09 00:04:44 +02:00
README.md add readme 2021-07-23 00:56:43 +02:00

libneo

libneo is an alternative standard library that wraps around libc. It comes with an entirely refactored API that is easier and safer to use than traditional POSIX. Key features include:

  • Sane(ish), standardized error handling
  • Minimal undefined behavior
  • Significantly less boilerplate
  • Memory safe(ish)
  • Runs on most POSIX compliant systems (tested on FreeBSD and Linux)
  • No Windows support

Usage

Please note that this project is still in its early development stage. APIs are subject to arbitrary change without prior notice.

Dependencies

  • A libc implementing at least POSIX.1-2008
  • clang (recommended) or GCC
  • CMake >= 3.14
  • git

CMake

libneo is distributed as a static library and can be directly included in a CMake project, e.g. using CMake's FetchContent module:

include(FetchContent)
FetchContent_Declare(
    neo
    GIT_REPOSITORY https://git.bsd.gay/fef/libneo.git
)
FetchContent_MakeAvailable(neo)

target_link_libraries(${PROJECT_NAME} PRIVATE neo)

License

Copyright © 2021 Fefie owo@fef.moe

libneo is non-violent software: you may only use, redistribute, and/or modify it under the terms of the CNPLv6+ as found in the LICENSE file or at https://git.pixie.town/thufie/CNPL.

libneo comes with ABSOLUTELY NO WARRANTY, to the extent permitted by applicable law. See the CNPLv6+ for details.