Can someone suggest a lightweight C library/header wrapper for POSIX functions that can be used cross-platform?
For example, it could be as simple as mapping open
and close
which are _open
and _close
in win32. Then there are functions with slightly more differences. I am aware of common c++
, boost
and posixcpp
, but they are overkill for the need.
I was considering writing it myself, but just checking if someone already did it rather than reinventing the wheel.