rsstats 0.0.1
Redis Enterprise Statistic collector
csv.h
Go to the documentation of this file.
1
21#ifndef __CSV_H__
22#define __CSV_H__
23
24#include <stdio.h> /* FILE */
25
26typedef struct csv_s csv_t;
27typedef struct csvrecord_s csvrecord_t;
28typedef struct csvfield_s csvfield_t;
29
30void csv_addline(FILE* reportfile);
31void csv_addfield(FILE* reportfile, const char* value);
32
33char* csvtok(char* source);
34char* txt2csv(const char* text);
35
36#endif /* __CSV_H__ */
37/* vim: set tw=80: */
void csv_addfield(FILE *reportfile, const char *value)
Definition: csv.c:37
void csv_addline(FILE *reportfile)
Definition: csv.c:32
struct csvrecord_s csvrecord_t
Definition: csv.h:27
struct csv_s csv_t
Definition: csv.h:26
struct csvfield_s csvfield_t
Definition: csv.h:28
char * txt2csv(const char *text)
Definition: csv.c:146
char * csvtok(char *source)
Definition: csv.c:50