mirror of
https://github.com/netdata/netdata.git
synced 2025-05-01 07:59:52 +00:00

By default functions are declared as extern in C/C++ headers. The goal of this PR is to reduce the wall of text that many headers have and, more importantly, to make the declaration of extern'd variables - of which we have many dispersed in various places - easily and quickly identifiable. Automatically generated with: $ git grep -l '^extern.*(' '**.h' | \ grep -v libjudy | \ grep -v 'sqlite3.h' | \ xargs sed -i -e 's/extern \(.*(.*$\)/\1/' This is a NFC.
10 lines
312 B
C
10 lines
312 B
C
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#ifndef NETDATA_API_FORMATTER_RRDSET2JSON_H
|
|
#define NETDATA_API_FORMATTER_RRDSET2JSON_H
|
|
|
|
#include "rrd2json.h"
|
|
|
|
void rrdset2json(RRDSET *st, BUFFER *wb, size_t *dimensions_count, size_t *memory_used, int skip_volatile);
|
|
|
|
#endif //NETDATA_API_FORMATTER_RRDSET2JSON_H
|