Descent3/cfile
Chris Sarbora 3da53e567f
Programmatically replace all __LINUX__ with POSIX
Steps:
```sh
srcs=$(mktemp)
find . -name "*.cpp" -or -name "*.c" -or -name "*.h" -or -name "*.hpp" -or -name "*.cc" -or -name "*.hh" > $srcs
xargs sed -i 's/ifndef __LINUX__/if !defined(POSIX)/' < $srcs
xargs sed -i 's/ifdef __LINUX__/if defined(POSIX)/' < $srcs
xargs sed -i 's/defined(__LINUX__)/defined(POSIX)/' < $srcs
```
2024-07-12 18:11:54 -05:00
..
tests Fix unittests on macOS 2024-07-05 01:50:57 +03:00
cfile.cpp Programmatically replace all __LINUX__ with POSIX 2024-07-12 18:11:54 -05:00
cfile.h Merge pull request #475 from winterheart/cfile-std-filesystem 2024-07-06 23:25:12 +00:00
CMakeLists.txt CFILE: Add unittest framework 2024-07-05 01:50:57 +03:00
hogfile.cpp
hogfile.h
inffile.cpp
inffile.h Replace "PSPATHNAME_LEN" and "MAX_PATH" with "_MAX_PATH" 2024-06-01 22:19:41 -04:00