mirror of
https://github.com/netdata/netdata.git
synced 2025-04-21 04:10: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
311 B
C
10 lines
311 B
C
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#ifndef NETDATA_API_FORMATTER_SSV_H
|
|
#define NETDATA_API_FORMATTER_SSV_H
|
|
|
|
#include "../rrd2json.h"
|
|
|
|
extern void rrdr2ssv(RRDR *r, BUFFER *wb, RRDR_OPTIONS options, const char *prefix, const char *separator, const char *suffix);
|
|
|
|
#endif //NETDATA_API_FORMATTER_SSV_H
|