= nng_version(3) // // Copyright 2018 Staysail Systems, Inc. // Copyright 2018 Capitar IT Group BV // // This document is supplied under the terms of the MIT License, a // copy of which should be located in the distribution where this // file was obtained (LICENSE.txt). A copy of the license may also be // found online at https://opensource.org/licenses/MIT. // == NAME nng_stat_string - get statistic string value == SYNOPSIS [source, c] ---- #include typedef struct nng_stat nng_stat; const char *nng_stat_string(nng_stat *stat); ---- == DESCRIPTION The `nng_stat_string()` function returns a string value for the statistic _stat_, which must be of type `NNG_STAT_STRING` (see `<>`). If the statistic is not of type `NNG_STAT_STRING`, then `NULL` will be returned. == RETURN VALUES The string value associated with _stat_, or `NULL` if the statistic is not a string type. == ERRORS None. == SEE ALSO [.text-left] <>, <>, <>, <>, <>, <>