mirror of
https://github.com/netdata/netdata.git
synced 2025-05-12 12:42:09 +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
12 lines
393 B
C
12 lines
393 B
C
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#ifndef NETDATA_API_FORMATTER_CSV_H
|
|
#define NETDATA_API_FORMATTER_CSV_H
|
|
|
|
#include "web/api/queries/rrdr.h"
|
|
|
|
extern void rrdr2csv(RRDR *r, BUFFER *wb, uint32_t format, RRDR_OPTIONS options, const char *startline, const char *separator, const char *endline, const char *betweenlines);
|
|
|
|
#include "../rrd2json.h"
|
|
|
|
#endif //NETDATA_API_FORMATTER_CSV_H
|