X-Git-Url: https://jfr.im/git/irc/evilnet/x3.git/blobdiff_plain/d76ed9a966ee3d955c8ef00ecc02e643c2005e2e..7b0150f8ee4d699706369f3f1d1304bcd20e7f06:/docs/coding-style.txt diff --git a/docs/coding-style.txt b/docs/coding-style.txt index 6f3c5ff..877bbf8 100644 --- a/docs/coding-style.txt +++ b/docs/coding-style.txt @@ -1,4 +1,4 @@ -This file contains various development notes useful when coding srvx. +This file contains various development notes useful when coding X3. HEADER FILES ------------ @@ -9,14 +9,14 @@ specifies that the following header files exist: You may unconditionally include the above headers, or any that are -shipped with srvx. ALL other headers must be conditional. +shipped with X3. ALL other headers must be conditional. DEBUG MODE ---------- Many libraries are in debug mode by default, and require the C preprocessor symbol NDEBUG to be set to disable the debug features (this is inspired by the behavior of assert() from the C standard). -Code in srvx should follow this convention. +Code in X3 should follow this convention. ASSERTIONS ----------