aboutsummaryrefslogtreecommitdiff
path: root/docs/ref/api/util/nng_version.md
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2024-10-22 15:22:54 -0700
committerGarrett D'Amore <garrett@damore.org>2024-10-22 15:22:54 -0700
commitcc2486615d7585b348b46170a6bb19c8084d6c5b (patch)
tree2808f2b010f3931cf40d880d62d5d5293ee9129d /docs/ref/api/util/nng_version.md
parent018294242819ed59e708e23cf40b822e843ec3ac (diff)
downloadnng-cc2486615d7585b348b46170a6bb19c8084d6c5b.tar.gz
nng-cc2486615d7585b348b46170a6bb19c8084d6c5b.tar.bz2
nng-cc2486615d7585b348b46170a6bb19c8084d6c5b.zip
docs: consolidate misc chapter
Diffstat (limited to 'docs/ref/api/util/nng_version.md')
-rw-r--r--docs/ref/api/util/nng_version.md36
1 files changed, 0 insertions, 36 deletions
diff --git a/docs/ref/api/util/nng_version.md b/docs/ref/api/util/nng_version.md
deleted file mode 100644
index 04a1dd1b..00000000
--- a/docs/ref/api/util/nng_version.md
+++ /dev/null
@@ -1,36 +0,0 @@
-# nng_version
-
-## NAME
-
-nng_version --- report library version
-
-## SYNOPSIS
-
-```c
-#include <nng/nng.h>
-
-const char * nng_version(void);
-```
-
-## DESCRIPTION
-
-The {{i:`nng_version`}} function returns a human readable {{i:version number}}
-for _NNG_.
-
-Additionally, compile time version information is available
-via some predefined macros:
-
-- {{i:`NNG_MAJOR_VERSION`}}: Major version number.
-- {{i:`NNG_MINOR_VERSION`}}: Minor version number.
-- {{i:`NNG_PATCH_VERSION`}}: Patch version number.
-
-_NNG_ is developed and released using
-[Semantic Versioning 2.0](http://www.semver.org), and
-the version numbers reported refer to both the API and the library itself.
-(The {{i:ABI}} -- {{i:application binary interface}} -- between the
-library and the application is controlled in a similar, but different
-manner depending upon the link options and how the library is built.)
-
-## RETURN VALUES
-
-`NUL`-terminated string containing the library version number.