libkovan  1
The kovan standard library
datalog.h
Go to the documentation of this file.
1 #ifndef _DATALOG_H_
2 #define _DATALOG_H_
3 
4 #include "export.h"
5 #include "vtable.h"
6 
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
18 
22 VF EXPORT_SYM void datalog_remove_category(const char *name);
23 
27 VF EXPORT_SYM void datalog_append_string(const char *text, const char *category);
28 
32 VF EXPORT_SYM void datalog_append_number(double number, const char *category);
33 
37 VF EXPORT_SYM void datalog_remove(int index, const char *category);
38 
42 VF EXPORT_SYM int datalog_write_plain(const char *path);
43 
47 VF EXPORT_SYM int datalog_write_csv(const char *path);
48 
53 
54 VFL
55 
56 #ifdef __cplusplus
57 }
58 #endif
59 
60 #endif
VF EXPORT_SYM int datalog_write_csv(const char *path)
VF EXPORT_SYM void datalog_remove_category(const char *name)
VF EXPORT_SYM void datalog_append_number(double number, const char *category)
VF EXPORT_SYM void datalog_clear()
#define VF
Definition: vtable.h:10
#define VFL
Definition: vtable.h:11
#define EXPORT_SYM
Definition: export.h:7
VF EXPORT_SYM void datalog_append_string(const char *text, const char *category)
VF EXPORT_SYM int datalog_write_plain(const char *path)
VF EXPORT_SYM void datalog_remove(int index, const char *category)