file_openOrCreateReadWrite

This commit is contained in:
2025-08-08 21:38:34 +03:00
parent 223406d4e4
commit fe9e44a660
5 changed files with 38 additions and 19 deletions

View File

@@ -6,8 +6,8 @@ CMP_C="gcc"
CMP_CPP="g++"
STD_C="c99"
STD_CPP="c++11"
WARN_C="-Wall -Wextra"
WARN_CPP="-Wall -Wextra"
WARN_C="-Wall -Wextra -Werror=return-type -Werror=pointer-arith"
WARN_CPP="-Wall -Wextra -Werror=return-type -Werror=pointer-arith"
SRC_C="$(find src -name '*.c')"
SRC_CPP="$(find src -name '*.cpp')"