mirror of
https://github.com/netdata/netdata.git
synced 2025-05-16 06:11:38 +00:00

* split all API formatters in modules * added markdown formatting * updated csv readme * updated csv readme * more documentation * added more documentation * updated documentation * fixed typo * fixed typo
10 lines
291 B
C
10 lines
291 B
C
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#ifndef NETDATA_API_FORMATTER_VALUE_H
|
|
#define NETDATA_API_FORMATTER_VALUE_H
|
|
|
|
#include "../rrd2json.h"
|
|
|
|
extern calculated_number rrdr2value(RRDR *r, long i, RRDR_OPTIONS options, int *all_values_are_null);
|
|
|
|
#endif //NETDATA_API_FORMATTER_VALUE_H
|